From ec77d5b6a4d6be3423b7723cf5e1333f599b0751 Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期一, 04 三月 2024 17:58:19 +0800 Subject: [PATCH] 销售机会模块 新建操作的时候,销售阶段默认为初期沟通+销售预测的币种默认人民币+产品管理部分币种隐藏 --- src/views/sales/salesOpportunity/index.vue | 46 ++++++++++++++++++++++++++++++++++++++-------- 1 files changed, 38 insertions(+), 8 deletions(-) diff --git a/src/views/sales/salesOpportunity/index.vue b/src/views/sales/salesOpportunity/index.vue index 78ef867..4937bd8 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> @@ -167,7 +167,7 @@ this.search_map = {} } else { this.search_map = { - [this.addConfig.id_name]: this.addConfig.client_name + [this.addConfig.id_name]: this.addConfig.id } } this.getData(this.search_map) @@ -175,6 +175,7 @@ methods: { setTable() { this.tableList = { + selectIndex:true, tableInfomation: [], allcol: [], showcol: this.showCol, @@ -248,7 +249,7 @@ addBtnClick() { this.editConfig.visible = true this.editConfig.title = "鏂板缓" - this.editConfig.infomation = { city_id: 0, ...this.addConfig } + this.editConfig.infomation = { city_id: 0, ...this.addConfig,currency:1,} }, // 缂栬緫 handleClick(row) { @@ -257,7 +258,7 @@ this.editConfig.title = "缂栬緫" this.editConfig.infomation = { ...row } }, - // 鍒犻櫎 + // 鎵归噺鍒犻櫎 delClick() { if (this.selValueList && this.selValueList.length > 0) { this.$confirm("鏄惁纭鍒犻櫎?", "璀﹀憡", { @@ -280,6 +281,33 @@ } else { 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) @@ -321,14 +349,16 @@ // 璺熻繘 followupClick(row) { console.log(row) - this.editFollowupConfig.visible = true this.editFollowupConfig.title = "鏂板缓" this.editFollowupConfig.infomation = { ...row, + currency:1, number: "", sale_chance_name: row.name, sale_chance_id: row.id } + this.editFollowupConfig.infomation.codeStandID='' + this.editFollowupConfig.visible = true } } } -- Gitblit v1.8.0