一個表格中的勾選框,根據每一列的條件判斷是否可以選擇。只需要在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