当前位置:   article > 正文

vue使用element-ui table 清除表格背景色以及表格边框线_elementui表格背景白色去掉

elementui表格背景白色去掉
  <div class="bkPart statusPart t_btn2">
            <div class="co-title">设备状态</div>
            <div class="silo">料仓</div>
            // 设置表格背景色,字体颜色以及字体大小
            <!--表格渲染-->
            <el-table
              ref="table"
              :header-cell-style="{
                backgroundColor: 'transparent',
                color: '#ffffff',
                fontSize: '9px',
                textAlign: 'center',
              }"
              :cell-style="{
                color: '#fff',
                backgroundColor: 'transparent',
                fontSize: '9px',
                textAlign: 'center',
              }"
              :row-style="{
                color: '#fff',
                backgroundColor: 'transparent',
                fontSize: '9px',
                textAlign: 'center',
              }"
              :data="siloData"
              :default-sort="{ prop: '', order: '' }"
              style="width: 100%"
            >
              <template slot="empty">
                <span style="color: #969799">{{ $t("NeoLight.empty") }}</span>
              </template>
              <el-table-column prop="posName" label="库位使用率" />
              <el-table-column prop="side" label="今日入库" />
              <el-table-column prop="sdate" label="今日出库" />
              <el-table-column prop="createDate" label="状态" />
            </el-table>
          </div>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38

css样式代码

  // 由于是只在本页面修改, 所以必须要用 /deep/ 或者 >>> 才能生效  /deep/ 是深度选择器,可自行百度了解更多
  .t_btn2 >>> .el-table,
  .el-table__expanded-cell {
    background-color: transparent;
  }
  .t_btn2 >>> .el-table tr {
    background-color: transparent !important;
  }
  .t_btn2 >>> .el-table--enable-row-transition .el-table__body td,
  .el-table .cell {
    background-color: transparent;
  }
  .t_btn2 >>> .el-table__row > td {
    border: none;
  }
  .t_btn2 >>> .el-table th.el-table__cell.is-leaf,
  .el-table td.el-table__cell {
    border-bottom: 1px solid #fff !important;
  }
  .t_btn2 >>> .el-table td.el-table__cell {
    border-bottom: 1px solid #fff !important;
  }
  /* 清除底部横线 */
  .el-table::before {
    height: 0px;
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

最终效果为

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/530559
推荐阅读
相关标签
  

闽ICP备14008679号