From 52bb988de16298ca1c7364e5fb6b0faa47d0c088 Mon Sep 17 00:00:00 2001 From: songshankun <songshankun@foxmail.com> Date: 星期二, 10 十月 2023 15:35:42 +0800 Subject: [PATCH] feat: 销售机会/报价单销售总单/销售子单 去除批量删除添加单独删除;表单宽度/label宽度调整 --- src/views/sales/quotation/index.vue | 36 ++++++++++++++++++++++++++++++------ 1 files changed, 30 insertions(+), 6 deletions(-) diff --git a/src/views/sales/quotation/index.vue b/src/views/sales/quotation/index.vue index 4ef0aae..1dd24be 100644 --- a/src/views/sales/quotation/index.vue +++ b/src/views/sales/quotation/index.vue @@ -8,15 +8,13 @@ <div class="filter-card"> <CommonSearch :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,7 +26,6 @@ <TableCommonView ref="tableListRef" :table-list="tableList" - :select-box="!isDetail" @selClientClick="selClientClick" @selContactsClick="selContactsClick" @selCommonClick="selCommonClick" @@ -39,7 +36,7 @@ <el-table-column label="鎿嶄綔" width="90"> <template slot-scope="scope"> <el-button @click="handleClick(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> @@ -242,7 +239,7 @@ this.editConfig.title = "缂栬緫" this.editConfig.infomation = { ...row, currency: "浜烘皯甯�" } }, - // 鍒犻櫎 + // 鎵归噺鍒犻櫎 delClick() { if (this.selValueList && this.selValueList.length > 0) { this.$confirm("鏄惁纭鍒犻櫎?", "璀﹀憡", { @@ -265,6 +262,33 @@ this.$message.warning("璇疯嚦灏戦�夋嫨涓�鏉¤褰�") } }, + /** + * 鍗曚釜鍒犻櫎 + * @param id 鎶ヤ环鍗昳d + */ + deleteItem(id) { + this.$confirm("鏄惁纭鍒犻櫎?", "璀﹀憡", { + confirmButtonText: "纭畾", + cancelButtonText: "鍙栨秷", + type: "warning" + }) + .then(() => { + getDelQuotation({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