Browse Source

no message

aXin-0810 9 months ago
parent
commit
2285effe8f

+ 5 - 2
src/views/engineerFeeSettlement/dailyMaintenanceBalance/feesWillBeRefunded/index.vue

@@ -90,7 +90,8 @@ export default {
       // 勾选选中行
       recordSelected2: [],
       // 表单
-      formData: {}
+      formData: {},
+      importBatchNo: ''
     }
   },
   computed: {
@@ -218,6 +219,7 @@ export default {
         if (pam.doStatus) {
           pam.params.push({ param: 'a.do_status', compare: '=', value: pam.doStatus })
         }
+        pam.params.push({ param: 'a.settlement_batch_no', compare: '=', value: this.importBatchNo })
         cb && cb(pam)
         return dailySummaryReduceList(pam)
       } catch (err) {}
@@ -239,13 +241,14 @@ export default {
       return this.operationBtn({
         view: {
           click: ({ row, index, column }) => {
+            this.importBatchNo = row.importBatchNo
             this.$refs.tabPage.addTab({
               // 对应显示的模块
               activeKey: 'view',
               // 唯一标识
               key: 'view',
               // 页签名称
-              label: '明细',
+              label: `明细-批次号:${this.importBatchNo}`,
               // 打开时事件
               triggerEvent: () => {},
               // 关闭时事件

+ 5 - 2
src/views/engineerFeeSettlement/dailyMaintenanceBalance/increaseAndDecreaseExpense/index.vue

@@ -89,7 +89,8 @@ export default {
       // 勾选选中行
       recordSelected2: [],
       // 表单
-      formData: {}
+      formData: {},
+      importBatchNo: ''
     }
   },
   computed: {
@@ -217,6 +218,7 @@ export default {
         if (pam.doStatus) {
           pam.params.push({ param: 'a.do_status', compare: '=', value: pam.doStatus })
         }
+        pam.params.push({ param: 'a.import_batch_no', compare: '=', value: this.importBatchNo })
         cb && cb(pam)
         return dailySummaryIncrDecrCostList(pam)
       } catch (err) {}
@@ -238,13 +240,14 @@ export default {
       return this.operationBtn({
         view: {
           click: ({ row, index, column }) => {
+            this.importBatchNo = row.importBatchNo
             this.$refs.tabPage.addTab({
               // 对应显示的模块
               activeKey: 'view',
               // 唯一标识
               key: 'view',
               // 页签名称
-              label: '明细',
+              label: `明细-批次号:${this.importBatchNo}`,
               // 打开时事件
               triggerEvent: () => {},
               // 关闭时事件

+ 3 - 1
src/views/engineerFeeSettlement/dailyMaintenanceBalance/settlementDataImport/index.vue

@@ -241,6 +241,7 @@ export default {
         if (pam.summaryStatus) {
           pam.params.push({ param: 'a.summary_status', compare: '=', value: pam.summaryStatus })
         }
+        pam.params.push({ param: 'a.import_batch_no', compare: '=', value: this.importBatchNo })
         cb && cb(pam)
         return dailySummaryRepairDetailList(pam)
       } catch (err) {}
@@ -262,13 +263,14 @@ export default {
       return this.operationBtn({
         view: {
           click: ({ row, index, column }) => {
+            this.importBatchNo = row.importBatchNo
             this.$refs.tabPage.addTab({
               // 对应显示的模块
               activeKey: 'view',
               // 唯一标识
               key: 'view',
               // 页签名称
-              label: '明细',
+              label: `明细-批次号:${this.importBatchNo}`,
               // 打开时事件
               triggerEvent: () => {},
               // 关闭时事件