zhouhao 2 éve
szülő
commit
da35727c34

+ 4 - 1
src/views/deposit_home/refund_list.vue

@@ -655,7 +655,10 @@ export default {
         status: 'OK',
         remark: ''
       },
-      numSum:{}
+      numSum:{
+        totalC:0,
+        amountC:0
+      }
     }
   },
   computed: {

+ 7 - 2
src/views/supply/engin/home_list.vue

@@ -691,7 +691,10 @@ export default {
       salesTypeList: [],
       NoRebateWalletList: [],
       typeList: [],
-      numSum:{}
+      numSum:{
+        totalC:0,
+        amountC:0
+      }
     }
   },
 
@@ -743,7 +746,9 @@ export default {
     this.getSalesmanList()
     this.getList()
     getEnginCountList().then(res=>{
-      this.numSum = res.data
+      if (res){
+        this.numSum = res.data
+      }
     })
   },