LAPTOP-FO2T5SIU\35838 6 mesi fa
parent
commit
2c50654c9c

+ 2 - 2
src/views/signingManagement/contractManagement/contractAdd.vue

@@ -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) {

+ 1 - 0
src/views/transactionRecord/convertRecordIndex.vue

@@ -10,6 +10,7 @@
           :append-to-body="false"
           :options="options"
           clearable
+          :props="{ multiple: true}"
           style="width: 100%"
           @change="handleChange"
         />