在禁用的函数中使用条件可以禁用多行,不需要写循环

 <el-table-column
          type="selection"
          :selectable='checkboxT'
          width="28">
        </el-table-column>
 //复选框
      checkboxT(row, rowIndex){
        if(rowIndex==0){
//      if(row.lie =='1'){
          return false;//禁用
        }else{
          return true;//不禁用
        }
      },

 

Logo

前往低代码交流专区

更多推荐