提交 6425fd8c authored 作者: 钟是志's avatar 钟是志

27520 求职创业补贴管理--勾选数据有问题,勾选不了,一条数据还能改重复勾选累积数据

上级 6bc22407
......@@ -61,6 +61,19 @@ class StandardTable extends Component {
this.handleRowSelectChange([], []);
};
checkRowKey = () => {
const { rowKey,
data: { list, pagination },
} = this.props;
if(rowKey && list && list.length){
if(list[0][rowKey]){
return rowKey;
}
}
return 'id';
}
render() {
const { selectedRowKeys, needTotalList } = this.state;
const {
......@@ -120,13 +133,12 @@ class StandardTable extends Component {
<NormalTable
components={components}
loading={loading}
// rowKey={rowKey || 'key'}
rowKey={'id'}
rowKey={this.checkRowKey()}
rowSelection={typeof noSelectRow !== 'undefined' && noSelectRow ? null : rowSelection}
dataSource={
!!list &&
list.map((x) => {
return x.id != null
return !!x.id
? x
: {
id: Math.random() * 10000 + '',
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论