hotfix/3.0.0.2403.01

This commit is contained in:
黎永顺 2024-03-13 14:23:08 +08:00
parent a12a097916
commit ffaf5dc036
1 changed files with 2 additions and 2 deletions

View File

@ -173,10 +173,10 @@ class Index extends Component {
const { routeParams: { salaryAcctRecordId } } = this.props;
saveAcctemployee({ salaryAcctRecordId, employeeIds }).then(({ status, errormsg }) => {
if (status) {
message.success(getLabel(541531, "添加成功!"));
message.success(getLabel(26712, "添加成功!"));
this.queryPCList();
} else {
message.error(errormsg || getLabel(111, "添加失败!"));
message.error(errormsg || getLabel(545246, "添加失败!"));
}
});
};