当前位置:   article > 正文

el-table表头取消全选框_el-table取消全选

el-table取消全选

 html el-table

:header-cell-class-name="cellClass"

 methods:

  1. cellClass(row) {
  2. if (row.columnIndex === 0) {
  3. return 'disabledCheck';
  4. }
  5. }

css

  1. // 深度选择器 去掉全选按钮
  2. ::v-deep .el-table .disabledCheck .cell .el-checkbox__inner {
  3. display: none;
  4. }
  5. ::v-deep .el-table .disabledCheck .cell::before {
  6. content: '';
  7. text-align: center;
  8. line-height: 37px;
  9. }

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读