Kaynağa Gözat

打印问题

Shannon_mu 2 yıl önce
ebeveyn
işleme
8fc98b1e1d

+ 12 - 5
operationSupport/src/views/payService/propertyFee/stepPage/detailsTable.vue

@@ -13,7 +13,7 @@ export default {
             cols: [
                 {
                     label: '订单号',
-                    prop: 'receiptNumber'
+                    prop: 'billNumber'
                 },
                 {
                     label: '地址',
@@ -21,7 +21,7 @@ export default {
                 },
                 {
                     label: '业主',
-                    prop: 'clientName',
+                    prop: 'residentName',
                     width: '100'
                 },
                 {
@@ -55,9 +55,16 @@ export default {
     },
     methods: {
         getList() {
-            // this.$http.post('/sc-charge/charge/receipt/findDetail?id=' + this.params.id).then({ status, data, msg })=>{
-
-            // })
+            this.$http
+                .post('/sc-charge/charge/receipt/findDetail?id=' + this.params.id)
+                .then(({ status, data, msg }) => {
+                    if (status == 0) {
+                        this.mixins_list = data.billList;
+                    } else {
+                        this.$message.error(msg);
+                    }
+                })
+                .catch(() => {});
         }
     },
     created() {