From 5c077dbb4d6e3dff95dea0bb532bf660a86d668c Mon Sep 17 00:00:00 2001 From: xiaozhiyong Date: Wed, 17 May 2023 19:27:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/order/components/confirmSubmit.vue | 21 +++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/src/views/order/components/confirmSubmit.vue b/src/views/order/components/confirmSubmit.vue index d74ae09..407ad89 100644 --- a/src/views/order/components/confirmSubmit.vue +++ b/src/views/order/components/confirmSubmit.vue @@ -124,6 +124,7 @@ export default { console.log('价格发生变化了捏') // 新的价格 this.newSalePrice = salePrice2company + this.policyPopulation() } else console.log('芜湖 没变') }) @@ -136,15 +137,25 @@ export default { } }, policyPopulation() { - let { salePrice, preQuantity, preAmount } = this.controlWindows.addInfo - console.log(salePrice, preQuantity, preAmount) + let { salePrice, floorPrice, preQuantity, preAmount } = this.controlWindows.addInfo + // console.log(salePrice, preQuantity, preAmount) if ((salePrice, preQuantity, preAmount)) { // 原策略 - Object.assign(this.tableData[0], { salePrice, preQuantity, preAmount }) + Object.assign(this.tableData[0], { salePrice, floorPrice, preQuantity, preAmount }) // 以提货量为准 - Object.assign(this.tableData[1], { salePrice: this.newSalePrice, preQuantity, preAmount: +this.newSalePrice * +preQuantity }) + Object.assign(this.tableData[1], { + salePrice: this.newSalePrice, + floorPrice: this.newSalePrice, + preQuantity, + preAmount: +this.newSalePrice * +preQuantity + }) // 以订单金额为准 - Object.assign(this.tableData[2], { salePrice: this.newSalePrice, preQuantity: +preAmount / +this.newSalePrice, preAmount }) + Object.assign(this.tableData[2], { + salePrice: this.newSalePrice, + floorPrice: this.newSalePrice, + preQuantity: +preAmount / +this.newSalePrice, + preAmount + }) this.undergoChanges = true } },