浏览代码

bug 修复

lilei 3 年之前
父节点
当前提交
4158d629cc

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
-  "version": 1655273688783
+  "version": 1655274761359
 }

+ 2 - 0
src/views/financialManagement/financialCollection/list.vue

@@ -295,6 +295,8 @@ export default {
       settleReceiptQuerySum(params).then(res => {
         if (res.status == 200) {
           this.totalData = Object.assign(this.totalData, res.data)
+          const tab = this.tabPaneData.find(item => item.bizType == this.queryParam.bizType)
+          tab.countNum = this.totalData.count || 0
         }
       })
     },

+ 2 - 0
src/views/financialManagement/financialPayment/list.vue

@@ -234,6 +234,8 @@ export default {
       settlePayQuerySum(params).then(res => {
         if (res.status == 200) {
           this.totalData = Object.assign(this.totalData, res.data)
+          const tab = this.tabPaneData.find(item => item.bizType == this.queryParam.bizType)
+          tab.countNum = this.totalData.count || 0
         }
       })
     },