美文网首页
el-table 禁用复选框

el-table 禁用复选框

作者: wxw_威 | 来源:发表于2023-06-15 11:10 被阅读0次

开发中表格数据的多选框,要根据状态禁用的,可以通过修改selectable属性,设置是否禁用。

....
<el-table-column type="selection" :selectable="changeSelectable" width="55" disabled />
...

methods: {
  changeSelectable(row, index) {
    // return  false:禁用    true: 可选
    return row.syncStatus !== '1'
  },
}

相关文章

网友评论

      本文标题:el-table 禁用复选框

      本文链接:https://www.haomeiwen.com/subject/lwclydtx.html