目录
需求:
设置el-table表头的多选框隐藏或禁用,网上找的均造成即时生效,但刷新页面时页面会卡顿。
方法1:
直接使用css(scoped中)设置:
::v-deep .el-table__header-wrapper .el-checkbox { // display: none;//设置不成功,页面卡顿 visibility: hidden; }
方法2:
给el-table设置表头属性header-cell-class-name
leftheaderStyle({ row, column, rowIndex, columnIndex }) { if (columnIndex === 0) { return "seltAllbtnDis"; } },
css部分(scoped):
::v-deep .seltAllbtnDis .cell { visibility: hidden; }
以上2种方法可隐藏全选框,效果如下:
方法3:
使用el-table的select-all方法,此方法为设置全选框禁用,非隐藏
//禁用全选框 selectAll() { this.$refs.MainTable.clearSelection(); },
效果: