vue2+element嵌套表格+多选(连续选择待改进)+表格样式修改

HTML 

使用的是展开行type="expand",并在样式里隐藏展开符,默认展开 :default-expand-all="true"


css

  //表头
  .el-table__header-wrapper{
    // margin-left: -50% !important;
    color: #000000;
    font-family: '宋体';
    font-weight: bold;
    background-color: #f5f7fa !important;
  }
  .el-table thead tr th{
            border: 0px solid #ddd!important;
           // border-top-left-radius: 10px;
           // border-top-right-radius: 10px;
        }
  //多选框
  .el-table__header-wrapper{
    .el-checkbox__inner{
       display: none;
    

你可能感兴趣的:(vue.js,elementui,javascript)