<Table
rowKey="id"
checkable
dataSource={reImportList}
columns={this.getColumns()}
selectedRowKeys={selectedRowKeys}
paginationProps={{ showPagination: false }}
multiBtnList={[
{
text: formatMessage({ id: ‘pp‘, defaultMessage: ‘批量设置新增‘ }),
onClick: this.setBatchAdd,
},
{
text: formatMessage({
id: ‘batcht‘,
defaultMessage: ‘批量设置覆盖‘,
}),
onClick: this.setBatchCover,
},
{
text: formatMessage({
id: ‘batchr‘,
defaultMessage: ‘批量设置忽略‘,
}),
onClick: this.setBatchIgnore,
},
{
text: formatMessage({
id: ‘batch‘,
defaultMessage: ‘批量删除‘,
}),
onClick: this.batchRemove,
},
]}
/>
原文:https://www.cnblogs.com/lipu12281/p/13448795.html