el-table 全选框 默认样式为文字 滑动变成单选框
    /deep/ .el-table__header-wrapper .el-checkbox {
      display: table-cell;
      width: 55px;
      .el-checkbox__input {
        display: none;
      }
      &:hover {
        .el-checkbox__input {
          display: block;
        }
        &::before {
          display: none;
        }
      }
      &::before {
        content: "全选";
        text-align: center;
        color: rgb(144, 147, 153);
        font-size: 14px;
        font-weight: 600;
      }
    }

  

posted on 2023-06-28 20:16  ChaoTesKai  阅读(9)  评论(0编辑  收藏  举报