1、

<el-table :data="tableData" stripe style="width: 100%; text-align: center" @selection-change="handleSelectionChange">
<!-- checkbox选中框 -->
     <el-table-column type="selection" width="55" :selectable="selectable"></el-table-column>
</el-table>

2、

selectable(row, index) {          
    if(row.status == 1){
        return true
    }else {
        return false
    }
},

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-31
  • 2021-07-31
  • 2021-07-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-15
相关资源
相似解决方案