Shannon_mu 2 years ago
parent
commit
d00f3a71d4

+ 3 - 2
operationSupport/src/views/businessManagement/contractManagement/stepPage/stepTwo.vue

@@ -134,7 +134,8 @@ export default {
                     this.$parent.idsObj[index].thisArr = [item];
                     this.$parent.idsObj[index].chargePrice = item.chargePrice;
                     this.$parent.idsObj[index].cycle = item.chargeCycle;
-                    this.$parent.idsObj[index].monthlyRent = this.$parent.tableArr[index].buildingArea * item.chargePrice;
+                    this.$parent.idsObj[index].monthlyRent =
+                        this.$parent.tableArr[index].buildingArea * (this.$parent.tableArr[index].chargeMode == 2 ? item.chargePrice : 1);
                     this.$parent.idsObj[index].increasingPercentage = item.increasingPercentage;
                     this.$parent.idsObj[index].increasingYear = item.increasingYear;
                 }
@@ -145,7 +146,7 @@ export default {
             let arrs = [];
             idsObj.map((item) => {
                 arrs.push({
-                    amount: item.chargePrice,
+                    amount: item.monthlyRent,
                     cycle: item.cycle,
                     earnestMoney: item.earnestMoney,
                     enable: item.enable,