master-bug

This commit is contained in:
黎永顺 2024-03-18 13:49:08 +08:00
parent 8666e97ded
commit f6557f1b63
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ const index: FunctionComponent<Props> = (props) => {
});
};
const rowSelection = {
columnWidth: 60, hideSelectAll: isDetailTable,
columnWidth: 60, columnTitle: isDetailTable ? "序号" : "",
renderCell: (value: boolean, record: any, index: number, originNode: React.ReactNode) => (isDetailTable ?
<span>{index + 1}</span> : originNode),
selectedRowKeys: selectedRowKeys,