|
@@ -538,7 +538,7 @@ export default {
|
|
|
const total = _this.form.totalPrice
|
|
|
const proportion = _this.form.buyerProportion / 100
|
|
|
if (total && proportion) {
|
|
|
- _this.form.buyerMoney = total * proportion
|
|
|
+ _this.form.buyerMoney = (total * proportion).toFixed(2)
|
|
|
}
|
|
|
},
|
|
|
maintenanceFundsChange() {
|
|
@@ -546,7 +546,7 @@ export default {
|
|
|
const price = _this.form.maintenanceFunds
|
|
|
const area = _this.form.actualBuildArea
|
|
|
if (price && area) {
|
|
|
- _this.form.maintenanceTotalPrice = price * area
|
|
|
+ _this.form.maintenanceTotalPrice = (price * area).toFixed(2)
|
|
|
}
|
|
|
},
|
|
|
querySearch(queryString, cb) {
|