From d3a5476064256802f9e0c0626bed6b8048e51bc0 Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期五, 13 十月 2023 17:37:00 +0800 Subject: [PATCH] 部分get请求获取返回数据修改 --- src/views/sales/salesOpportunity/index.vue | 38 +++++++++++++++++++++++++++++++++----- 1 files changed, 33 insertions(+), 5 deletions(-) diff --git a/src/views/sales/salesOpportunity/index.vue b/src/views/sales/salesOpportunity/index.vue index 78ef867..8392078 100644 --- a/src/views/sales/salesOpportunity/index.vue +++ b/src/views/sales/salesOpportunity/index.vue @@ -10,13 +10,12 @@ :show-add="false" :show-download="false" :amount-view="false" - :show-action-btn="false" placeholder="璇疯緭鍏ユ満浼氬悕绉�" @searchClick="onFilterSearch" > <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> @@ -28,6 +27,7 @@ <TableCommonView ref="tableListRef" :table-list="tableList" + :select-box="false" @selClientClick="selClientClick" @selContactsClick="selContactsClick" @selCommonClick="selCommonClick" @@ -35,11 +35,11 @@ @selTableCol="selTableCol" > <template slot="tableButton"> - <el-table-column label="鎿嶄綔" width="100"> + <el-table-column label="鎿嶄綔" width="120"> <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="deleteItem(scope.row.id)" type="text" size="small">鍒犻櫎</el-button> </template> </el-table-column> </template> @@ -175,6 +175,7 @@ methods: { setTable() { this.tableList = { + selectIndex:true, tableInfomation: [], allcol: [], showcol: this.showCol, @@ -257,7 +258,7 @@ this.editConfig.title = "缂栬緫" this.editConfig.infomation = { ...row } }, - // 鍒犻櫎 + // 鎵归噺鍒犻櫎 delClick() { if (this.selValueList && this.selValueList.length > 0) { this.$confirm("鏄惁纭鍒犻櫎?", "璀﹀憡", { @@ -281,6 +282,33 @@ this.$message.warning("璇疯嚦灏戦�夋嫨涓�鏉¤褰�") } }, + /** + * 鍗曚釜鍒犻櫎 + * @param id 閿�鍞満浼歩d + */ + deleteItem(id) { + this.$confirm("鏄惁纭鍒犻櫎?", "璀﹀憡", { + confirmButtonText: "纭畾", + cancelButtonText: "鍙栨秷", + type: "warning" + }) + .then(() => { + getDelSaleChance({ids: [id]}).then((response) => { + if (response.code === 200) { + this.$message.success("鍒犻櫎鎴愬姛") + this.getData() + } else { + this.$message.warning("鍒犻櫎澶辫触") + } + }) + }) + .catch((err) => { + if (err!== 'cancel'){ + console.error(err) + this.$message.warning("鍒犻櫎澶辫触") + } + }) + }, getSelectArray(val) { console.log(val) this.selValueList = [] -- Gitblit v1.8.0