From 42ee5f0cd8bb3cd03a8320bdc3e8803208235a54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E6=B0=B8=E9=A1=BA?= <971387674@qq.com> Date: Sun, 29 Jan 2023 15:52:46 +0800 Subject: [PATCH] =?UTF-8?q?=E8=96=AA=E8=B5=84=E6=A0=B8=E7=AE=97=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pc4mobx/hrmSalary/stores/calculate.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pc4mobx/hrmSalary/stores/calculate.js b/pc4mobx/hrmSalary/stores/calculate.js index 40379525..c5fb9a94 100644 --- a/pc4mobx/hrmSalary/stores/calculate.js +++ b/pc4mobx/hrmSalary/stores/calculate.js @@ -266,6 +266,7 @@ export class calculateStore { API.getSalarySobCycle({ salaryAcctRecordId: id }).then(res => { if (res.status) { this.baseSalarySobCycle = res.data; + this.getColumnDesc({ salaryAcctRecordId: id }); } else { message.error(res.errormsg || "获取失败"); } @@ -343,6 +344,7 @@ export class calculateStore { this.acctResultListPageInfo = res.data.pageInfo; this.acctResultListColumns = res.data.columns; resolve(res.data.columns); + this.getColumnDesc({ salaryAcctRecordId: params.salaryAcctRecordId }); } else { message.error(res.errormsg || ""); reject();