This commit is contained in:
2021-06-16 10:07:14 +08:00
parent 650fe85a3b
commit c322401271
5 changed files with 259 additions and 10 deletions

View File

@@ -223,7 +223,7 @@ export default class QueryTable extends Component {
columns: (columns || []).filter(p => !p.hidden),
bordered: true,
size: 'middle',
rowKey: record => record.id || record,
rowKey: record => record.id || Math.random().toString(16).slice(2),
...this.props
}