antd的table组件,勾选框禁用的解决方案探讨

92 阅读1分钟

image.png

const rowSelection = {
    getCheckboxProps:()=>{
        return {disabled:true}
    }
}