From bde6840850b7580a21a28d619ecfb1ff34f319bc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=BB=8E=E6=B0=B8=E9=A1=BA?= <971387674@qq.com>
Date: Thu, 17 Nov 2022 16:34:22 +0800
Subject: [PATCH] =?UTF-8?q?=E7=A4=BE=E4=BF=9D=E7=A6=8F=E5=88=A9=E5=8F=B0?=
=?UTF-8?q?=E8=B4=A6=E9=A1=B5=E9=9D=A2=E6=93=8D=E4=BD=9C=E5=88=97=E7=9A=84?=
=?UTF-8?q?=E9=97=AE=E9=A2=98=E8=A7=A3=E5=86=B3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../pages/socialSecurityBenefits/standingBook/index.js | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
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};
}
};
})}