diff --git a/pc4mobx/hrmSalary/pages/socialSecurityBenefits/standingBook/index.js b/pc4mobx/hrmSalary/pages/socialSecurityBenefits/standingBook/index.js
index 5ae02de4..78aefbbb 100644
--- a/pc4mobx/hrmSalary/pages/socialSecurityBenefits/standingBook/index.js
+++ b/pc4mobx/hrmSalary/pages/socialSecurityBenefits/standingBook/index.js
@@ -322,7 +322,7 @@ export default class StandingBook extends React.Component {
this.setState({
progressVisible: false,
progress: 0
- },()=>{
+ }, () => {
message.success("核算成功");
this.handleClose();
this.getCommonList({
@@ -445,7 +445,7 @@ export default class StandingBook extends React.Component {
>
} // 左侧图标
+ icon={} // 左侧图标
iconBgcolor="#F14A2D" // 左侧图标背景色
buttons={showOperateBtn ? rightBtns : []}
// showDropIcon={true} // 是否显示下拉按钮
@@ -477,10 +477,11 @@ export default class StandingBook extends React.Component {
columns={_.filter(columns, (it) => it.dataIndex !== "id").map(item => {
item.width = "150px";
if (item.dataIndex === "billMonth") item.fixed = "left";
+ if (item.dataIndex === "action") return { ...item };
return {
...item,
render: (text) => {
- return {text}
+ return {text};
}
};
})}