wolyshaw 4 年之前
父節點
當前提交
fef945614e

文件差異過大導致無法顯示
+ 0 - 0
dist/index.html


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/chunk-0415442d.0b50e800.js


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/chunk-0415442d.827edc17.js


+ 5 - 4
src/views/businessManager/orderManager/payRecord.vue

@@ -209,7 +209,7 @@ export default {
       removeFinancialExpenditure({
           ids: id
         })
-        this.getList()
+      .then(() => this.getList())
     },
     beforeUpload(file) {
       load.startLoading()
@@ -315,11 +315,12 @@ export default {
         cancelButtonText: "取消",
         type: "warning"
       }).then(() => {
-        removeFinancialExpenditure({
+        return removeFinancialExpenditure({
           ids: this.passed.join(',')
         })
-        this.getList()
-      }).catch(() => { });
+      })
+      .then(() => this.getList())
+      .catch(() => { });
     }
   }
 }

部分文件因文件數量過多而無法顯示