el-table 全选不可选择(1)
<el-table :data="fzData" @selection-change="handleSelectionChange" border class="avue-crud">
<el-table-column :selectable="checkSelect" type="selection" width="55" header-align="center" align="center"></el-table-column>
</el-table>
checkSelect (row,index) {
let isCheck = false;
if(this.SelectJgStr.indexOf(row.id) === -1){
isCheck = true;
}
return isCheck;
},
handleSelectionChange(val) {
this.multipleSelection = val;
},
selectable:仅对 type=selection 的列有效,类型为 Function,Function 的返回值用来决定这一行的 CheckBox 是否可以勾选
择善人而交,择善书而读,择善言而听,择善行而从。