el-table多选框有时需要禁用,selectable为true此行数据不禁用,为false则本行禁用
判断是否禁用方法函数:
<el-table-column type="selection":selectable="selectable" width="40"></el-table-column>methods:{selectable(row, index){//unselectableList为需要禁用的数组,需要禁用的数组中与本页数据无相匹配的数据的数据返回true(本行不禁用),//反之返回false(本行禁用)returnthis.unselectableList.findIndex(item=> item.id == row.id)===-1}}
标签:
javascript
前端
本文转载自: https://blog.csdn.net/weixin_44845483/article/details/127430730
版权归原作者 前端追随者 所有, 如有侵权,请联系我们删除。
版权归原作者 前端追随者 所有, 如有侵权,请联系我们删除。