泛微薪资核算iframe表格

custom-新弘农业/V2-薪资核算表格添加序号列
黎永顺 2 years ago
parent 3530b66586
commit 8a0388b460

@ -209,7 +209,19 @@ const payrollFilesTable: FC = (props) => {
[styles.tableWrapper]: true, [styles.tableWrapper]: true,
[styles.tableTotalWrapper]: true [styles.tableTotalWrapper]: true
})} })}
columns={!_.isEmpty(columns) && convertColumns(columns, _.findIndex(columns, ["dataIndex", "operate"]), Object.keys(columns).length)} // @ts-ignore
columns={!_.isEmpty(columns) && [
{
title: "序号",
dataIndex: "index",
width: 50,
fixed: "left",
render: (text: any, record: any, index: number) => {
return (pageInfo.pageNum - 1) * pageInfo.size + index + 1;
}
},
...convertColumns(columns, _.findIndex(columns, ["dataIndex", "operate"]), Object.keys(columns).length)
]}
dataSource={dataSource} dataSource={dataSource}
size="small" size="small"
rowSelection={rowSelection} rowSelection={rowSelection}

Loading…
Cancel
Save