需求:列表某些数据复选框禁用
实现效果图:
实现代码:
<a-table :pagination="false" :row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange,getCheckboxProps:getCheckboxProps }" :columns="columns" :data-source="data" />
- getCheckboxProps: record => ({//record为选中的表格行
- props: {
- disabled:['超级管理员','省级用户','市级管理员','市级用户'].includes(record.name)
- }
- }),