From 6be74fae87a57996e8cf1b8778ad16ddbb1f870b Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期二, 27 二月 2024 16:57:10 +0800 Subject: [PATCH] 如果销售机会,客户名称为空查询所有销售报价单列表,否则查对应报价单,如果客户名称为空查所有销售机会列表 --- src/views/client/client/index.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/client/client/index.vue b/src/views/client/client/index.vue index d767ccc..7bbf5bf 100644 --- a/src/views/client/client/index.vue +++ b/src/views/client/client/index.vue @@ -300,10 +300,10 @@ }, // 缂栬緫 handleClick(row) { - console.log(row) this.editConfig.title = "缂栬緫" this.editConfig.infomation = { - ...row + ...row, + activeName:this.activeName, } this.editConfig.visible = true }, @@ -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