用户点击确定的时候可以把选中的删除
<a-table
style="height:500px"
ref="table2"
bordered
size="middle"
rowKey="id"
:columns="columns2"
:dataSource="dataSorde"
:pagination="ipagination2"
:loading="loading2"
:rowSelection="{selectedRowKeys: selectedRowKeys2, onChange: onSelectChange2}"
@change="handleTableChange2">
<span slot="action" slot-scope="record,text">
<a-switch @change="switchButton(record,text)" checked-children="启用" un-checked-children="停用" default-checked />
</span>
</a-table>
你都能拿到选中的
selectedRowKeys
,删除还有什么问题吗?