美文网首页
el-table根据条件部分复选框不能选中

el-table根据条件部分复选框不能选中

作者: 泪滴在琴上 | 来源:发表于2022-12-25 17:25 被阅读0次
<el-table :data="tableData" style="width: 100%"  @selection-change="handleSelectionChange">
            <el-table-column
              type="selection"
              width="55"
              :selectable="checkboxInit">
            </el-table-column>
            <template v-for="(item,index) in tableField">

js

checkboxInit(row,index){
        if(row['phase']!='wait_push'&&row['is_mql']=='N'){
          return 1
        }else{
          return 0
        }
      },

相关文章

网友评论

      本文标题:el-table根据条件部分复选框不能选中

      本文链接:https://www.haomeiwen.com/subject/kisgqdtx.html