LAPTOP-FO2T5SIU\35838 6 달 전
부모
커밋
2c50654c9c
2개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/views/signingManagement/contractManagement/contractAdd.vue
  2. 1 0
      src/views/transactionRecord/convertRecordIndex.vue

+ 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"
         />