【element-ui】element-ui 中table组件,selectable属性
根据返回数据有无gruopNo,来禁选一部分。存在groupNo则该行不可勾选,若返回为空,则可以勾选。但是,代码执行后,表格没有变化还都是可选的
回答:
selectable默认为函数类型,参数默认为row, index
题主的{commit,dispatch}参数没有作用,应改为:
powerRowSelectable(row,index){
return !row.groupNo;
}
以上是 【element-ui】element-ui 中table组件,selectable属性 的全部内容, 来源链接: utcz.com/a/151221.html