feature/业务线管理

This commit is contained in:
lys 2025-10-22 16:45:22 +08:00
parent 23c659f04b
commit fd0a3f2cb2
1 changed files with 1 additions and 1 deletions

View File

@ -308,7 +308,7 @@ const index: FunctionComponent<Props> = (props) => {
columnWidth: 50,
columnTitle: isDetailTable && !showSee ? "序号" : "",
renderCell: (value: boolean, record: any, index: number, originNode: React.ReactNode) =>
isDetailTable && !showSee ? <span>{((pageInfo.current as number) - 1) * (pageInfo.pageSize as number) + index + 1}</span> : originNode,
isDetailTable && !showSee ? <span>{!_.isEmpty(pageInfo) ? ((pageInfo.current as number) - 1) * (pageInfo.pageSize as number) + index + 1 : index + 1}</span> : originNode,
selectedRowKeys,
preserveSelectedRowKeys: true,
onChange: (rowKeys: React.Key[]) => {