From d4f4c52402b91cb8e17c1845da71c5e39662fde0 Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期三, 03 一月 2024 15:28:06 +0800 Subject: [PATCH] 销售报价单列表页增加统计内容及接口联调、添加报价单天天客户名称及对应限制功能 --- src/views/client/client/index.vue | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/views/client/client/index.vue b/src/views/client/client/index.vue index 585bd9d..7b7d9d3 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 @@ -391,7 +391,7 @@ async changeHighSeasClick(row) { await getAssign({ ids: [row.id], - member_id: 1, + member_id: 0, type: "client" }).then((res) => { this.editConfig.visible = false -- Gitblit v1.8.0