From 139cba4d4a7df5f83b10512eac70d5b37923df2d Mon Sep 17 00:00:00 2001 From: lys <971387674@qq.com> Date: Tue, 25 Nov 2025 09:16:31 +0800 Subject: [PATCH] =?UTF-8?q?custom/=E9=92=B1=E6=99=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/payrollRelease/components/grantTableList/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pc4mobx/hrmSalary/pages/payrollRelease/components/grantTableList/index.js b/pc4mobx/hrmSalary/pages/payrollRelease/components/grantTableList/index.js index 30143435..794b8105 100644 --- a/pc4mobx/hrmSalary/pages/payrollRelease/components/grantTableList/index.js +++ b/pc4mobx/hrmSalary/pages/payrollRelease/components/grantTableList/index.js @@ -93,10 +93,10 @@ class Index extends Component { case "batGrant": case "batWithdraw": this.setState({ batLoading: true }); - batAPI[key]({ salarySendIds: this.state.selectedRowKeys }).then(({ status, errormsg }) => { + batAPI[key]({ salarySendIds: this.state.selectedRowKeys }).then(({ status, data, errormsg }) => { this.setState({ batLoading: false }); if (status) { - message.success(getLabel(111, "操作成功!")); + message.success(data ?? getLabel(111, "操作成功!")); this.getPayrollList(this.props); } else { message.error(errormsg);