pull/12/head
xiaozhiyong 2 years ago
parent cfc1094879
commit 5c077dbb4d
  1. 21
      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
}
},

Loading…
Cancel
Save