From d77e006ffa14f076be9df4c5b77cf12ee6735434 Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期三, 01 十一月 2023 18:53:23 +0800 Subject: [PATCH] 公海客户和我的客户 类型更换 --- src/views/client/client/index.vue | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/client/client/index.vue b/src/views/client/client/index.vue index 585bd9d..d767ccc 100644 --- a/src/views/client/client/index.vue +++ b/src/views/client/client/index.vue @@ -150,7 +150,7 @@ visible: false, infomation: {} }, - not_admin: 2, + is_public:true, tableColumn:[ { label: "瀹㈡埛鍚嶇О", prop: "name", min: 100, isClientClick: true, default:true}, // 瀹㈡埛鍚嶇О { label: "閿�鍞礋璐d汉", prop: "member_name" }, // 閿�鍞礋璐d汉 @@ -167,7 +167,7 @@ created() { this.setTable() this.search_map = { - not_admin: this.not_admin + is_public: this.is_public } this.getData() }, @@ -263,12 +263,12 @@ tabsClick(tab) { console.log(tab.name) if (tab.name === "first") { - this.not_admin = 2 + this.is_public = true } else { - this.not_admin = 1 + this.is_public = false } this.search_map = { - not_admin: this.not_admin + is_public: this.is_public } this.pagerOptions.currPage = 1 this.getData() @@ -276,7 +276,7 @@ // 鎼滅储 onFilterSearch(searchText){ this.search_map = { - not_admin: this.not_admin, + is_public: this.is_public, name: searchText } this.pagerOptions.currPage = 1 -- Gitblit v1.8.0