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 } },