Element-ui设置el-table表头全选框隐藏或禁用

来自:网络
时间:2023-07-25
阅读:
目录

需求:

设置el-table表头的多选框隐藏或禁用,网上找的均造成即时生效,但刷新页面时页面会卡顿。

Element-ui设置el-table表头全选框隐藏或禁用

方法1:

直接使用css(scoped中)设置:

::v-deep .el-table__header-wrapper .el-checkbox {
  // display: none;//设置不成功,页面卡顿
  visibility: hidden;
}

方法2:

给el-table设置表头属性header-cell-class-name

Element-ui设置el-table表头全选框隐藏或禁用

leftheaderStyle({ row, column, rowIndex, columnIndex }) {
      if (columnIndex === 0) {
        return "seltAllbtnDis";
      }
    },

css部分(scoped):

::v-deep .seltAllbtnDis .cell {
    visibility: hidden;
  }

以上2种方法可隐藏全选框,效果如下:

Element-ui设置el-table表头全选框隐藏或禁用

方法3:

使用el-table的select-all方法,此方法为设置全选框禁用,非隐藏

Element-ui设置el-table表头全选框隐藏或禁用

//禁用全选框
    selectAll() {
      this.$refs.MainTable.clearSelection();
    },

 效果:

Element-ui设置el-table表头全选框隐藏或禁用

总结

返回顶部
顶部