From 61883fcf237024ceb7622daf5b23434e3eb1be74 Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期一, 16 十月 2023 10:38:50 +0800 Subject: [PATCH] 产品获取值修改 --- src/views/client/contacts/index.vue | 32 ++++++++++++++++++++------------ 1 files changed, 20 insertions(+), 12 deletions(-) diff --git a/src/views/client/contacts/index.vue b/src/views/client/contacts/index.vue index 00dfcf3..562033e 100644 --- a/src/views/client/contacts/index.vue +++ b/src/views/client/contacts/index.vue @@ -15,7 +15,7 @@ > <template slot="leftButton"> <el-button size="small" type="primary" @click="addBtnClick">鏂板缓</el-button> - <el-button size="small" @click="delClick">鍒犻櫎</el-button> + <!-- <el-button size="small" @click="delClick">鍒犻櫎</el-button> --> </template> </CommonSearch> </div> @@ -34,11 +34,11 @@ @selTableCol="selTableCol" > <template slot="tableButton"> - <el-table-column label="鎿嶄綔" width="90" fixed="right"> + <el-table-column label="鎿嶄綔" width="120" fixed="right"> <template slot-scope="scope"> <el-button @click="handleClick(scope.row)" type="text" size="small">缂栬緫</el-button> - <el-button @click="followupClick(scope.row)" type="text" size="small">璺熻繘</el-button> - <!-- <el-button @click="delClick(scope.row.id)" type="text" size="small">鍒犻櫎</el-button> --> + <!-- <el-button @click="followupClick(scope.row)" type="text" size="small">璺熻繘</el-button> --> + <el-button @click="delClick(scope.row.id)" type="text" size="small">鍒犻櫎</el-button> </template> </el-table-column> </template> @@ -156,6 +156,7 @@ methods: { setTable() { this.tableList = { + selectIndex: true, tableInfomation: [], allcol: [], showcol: this.showCol, @@ -238,15 +239,24 @@ this.editConfig.infomation = { ...row } }, // 鍒犻櫎 - delClick() { - if (this.selValueList && this.selValueList.length > 0) { + delClick(id) { + if(!id){ + if (this.selValueList && this.selValueList.length == 0) { + this.$message.warning("璇疯嚦灏戦�夋嫨涓�鏉¤褰�") + return true; + } + } this.$confirm("鏄惁纭鍒犻櫎?", "璀﹀憡", { confirmButtonText: "纭畾", cancelButtonText: "鍙栨秷", type: "warning" }) .then(() => { - getDeleteContact({ ids: this.selValueList }).then((response) => { + let params={ids: this.selValueList } + if(id){ + params={ids: [id]} + } + getDeleteContact(params).then((response) => { if (response.code === 200) { this.$message.success("鍒犻櫎鎴愬姛") this.getData() @@ -256,9 +266,6 @@ }) }) .catch(() => {}) - } else { - this.$message.warning("璇疯嚦灏戦�夋嫨涓�鏉¤褰�") - } }, getSelectArray(val) { console.log(val) @@ -289,13 +296,14 @@ // 璺熻繘 followupClick(row) { console.log(row) - this.editFollowupConfig.visible = true this.editFollowupConfig.title = "鏂板缓" this.editFollowupConfig.infomation = { ...row, client_name: row.Client.name, - number: "" + number: "", + codeStandID:'' } + this.editFollowupConfig.visible = true } } } -- Gitblit v1.8.0