直接上代码
1 <el-table-column type="selection" :selectable="selectable" align="center" width="50">
methods: { //禁用部分选择框 selectable(row){ //判断条件 if(row.datatableId == 10057||row.datatableId == 10049){ return false }else{ return true } } }
2023-10-08 23:46:10
直接上代码
1 <el-table-column type="selection" :selectable="selectable" align="center" width="50">
methods: { //禁用部分选择框 selectable(row){ //判断条件 if(row.datatableId == 10057||row.datatableId == 10049){ return false }else{ return true } } }