-
Notifications
You must be signed in to change notification settings - Fork 15.3k
表格禁用勾选后,点击全选还是会选中 #5466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
zy |
@zhangdaiscott 打包后会出现样式问题 |
打包后 全选按钮样式不生效 @zhangdaiscott |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
版本号:3.5.5
前端版本:vue3
问题描述:表格某列禁止勾选后,点击表头全部勾选还是会选中。
截图&代码:
rowSelection: {
type: 'checkbox',
getCheckboxProps(record: Recordable) {
if (record.processStatus == 'approve' && record.stageStatus!='publicity') {
return { disabled: false };
} else {
return { disabled: true };
}
},
onChange(keys,rows){
console.log(keys)
console.log(rows)
}
},
官方vue3演示版 组件&功能>树形表格 有同样的问题
友情提示(为了提高issue处理效率):
The text was updated successfully, but these errors were encountered: