• eltable多选框根据条件隐藏显示


     

    提供一个方法,
    通过添加相应类来控制样式,设置 display: none ,达到隐藏 checkbox 的目的。
    利用Table Attributes 属性里面的 cell-class-name 属性,添加单元格的class
     <template>
        <el-table
         :cell-class-name="cellcb"
         ...
        >
         </el-table>
    </template>
    <script>
      methods: {
        cellcb(row){
          if(row.row.checkStatus === 1&&row.columnIndex === 0){
            return "myCell"
         }
        }
    </script>
    <style>
     .myCell .el-checkbox__input {
      display: none
    }  
    </style>

    记录下,转自:https://www.imooc.com/wenda/detail/513985

    隐藏表头中的全选框

    ::v-deep .el-table__header-wrapper  .el-checkbox{
        display:none
    }
  • 相关阅读:
    tarjan algorithm
    最小生成树
    Manacher's Algorithm (马拉车算法)
    KMP
    Trie(字典树)
    Hash
    GDB调试
    图论
    扫描线
    STL
  • 原文地址:https://www.cnblogs.com/listen9436/p/15684643.html
Copyright © 2020-2023  润新知