Hwt 3 years ago
parent
commit
940d6c1039

+ 1 - 0
operationSupport/src/views/ownerManagement/landlordReview/examine.vue

@@ -116,6 +116,7 @@ export default {
           this.$http.post(url, params).then(({ data, status, msg }) => {
             if (status == 0) {
               this.$message.success(msg);
+              this.params.callback();
               this.$emit('close');
             } else {
               this.$message.error(msg);

+ 1 - 0
operationSupport/src/views/ownerManagement/landlordReview/index.vue

@@ -156,6 +156,7 @@ export default {
         });
 
       }).then(() => {
+        debugger;
         this.mixins_search();
       });
     }

+ 0 - 5
operationSupport/src/views/payService/landlordBill/index.vue

@@ -115,11 +115,6 @@
           @click="mixins_search()"
           icon="el-icon-search"
         >搜索</el-button>
-
-        <!-- {{this.$collection}}
-        {{this.$billAmount}}
-        {{this.$receivableAmount}}
-        {{this.$editAmount}} -->
         <div class="search-icon">
           <el-tooltip
             class="item"

+ 2 - 1
operationSupport/src/views/payService/landlordBill/stePage/single.vue

@@ -68,7 +68,7 @@
           <div style="white-space: nowrap">{{ thisItem.receivableAmount }}</div>
         </el-form-item>
         <el-form-item
-          label="收金额(元)"
+          label="收金额(元)"
           required
         >
           <el-input
@@ -214,6 +214,7 @@ export default {
         .then(({ data, msg, status }) => {
           if (status == 0) {
             this.thisItem = data;
+            this.thisItem.amount = data.discountAmount;
           }
         })
         .catch(() => { });