element table的selection根據條件禁用

维维WW發表於2024-12-09

一個表格中的勾選框,根據每一列的條件判斷是否可以選擇。只需要在table的type="selection"列新增一個selectableCallback

<el-table-column type="selection" :selectable="selectableCallback"/>
selectableCallback(row, index){ //scope.row.useStatus == true 狀態是【使用中】的時候不可選
      if(row.useStatus == true) {
        return false;
      }else {
        return true;
      }
    },

參考文章

https://blog.csdn.net/m0_59462557/article/details/123528186

相關文章