几个要点:
1.通过 selectable 绑定
2.绑定的方法只能返回0/1
<el-table-column type="selection" width="55" :selectable="checkbox_select"> </el-table-column>
checkbox_select(row, index){ if (this.$MyComm.isEmpty(row.bug_id)){ return 0 }else { return 1 }
参考文档:https://blog.csdn.net/rickiyeat/article/details/76595263
本文介绍如何在Element UI的ElTable组件中使用selectable属性绑定方法来控制复选框的可选择性,方法需返回0或1,示例代码展示了根据bug_id字段判断是否允许选择。

43

被折叠的 条评论
为什么被折叠?



