当前位置:   article > 正文

element表格样式修改_el-table 加边框

el-table 加边框

1.背景颜色

  1. .el-table {
  2. color: #fff!important;
  3. }
  4. .el-table th {
  5. text-align: center!important;
  6. background-color: #144F61!important;
  7. color: #fff!important;
  8. font-size: 17px!important;
  9. font-weight: 800!important;
  10. border-color: #12333C!important;
  11. }
  12. .el-table tr {
  13. background-color: #244951!important;
  14. }
  15. .el-table td {
  16. text-align: center!important;
  17. border-color: #12333C!important;
  18. }
  19. /*去掉鼠标移入表格变色*/
  20. .el-table--enable-row-hover .el-table__body tr:hover > td {
  21. background-color: #244951!important;
  22. }

2.边框颜色

  1. /*去掉表格边框颜色*/
  2. .el-table--border::after,
  3. .el-table--group::after,
  4. .el-table::before
  5. {
  6. background-color: #12333C!important;
  7. }
  8. .el-table--border,
  9. .el-table--group {
  10. border-color: #12333C!important;
  11. }
  12. /*表头下面的白线去掉*/
  13. .el-table th.el-table__cell.is-leaf{
  14. border-bottom: 0!important;
  15. }

3.奇偶行背景颜色不同

        1) 给el-table加:row-class-name方法

<el-table :row-class-name="tableClass"></el-table>

        2) 在methods中加入方法

  1. methods: {
  2. //偶数加背景色
  3. tableClass({ row, rowIndex }) {
  4. if (rowIndex % 2 == 1) {
  5. //奇数行,序号不能被2整除
  6. return "even-row";
  7. } else {
  8. return "success-row";
  9. }
  10. },
  11. },

        3) 在css里定义奇偶行颜色

  1. .el-table {
  2. color: #000;
  3. .even-row {
  4. background: #e8e8e8;
  5. }
  6. .success-row {
  7. background: #f4f4f4;
  8. }
  9. }

4.去掉表头

:show-header="false"

5.加行高(行高存在最小值,低于一定值时不再变化)

row-style="height:80px"

6. 减行高(修改el-table元素中cell-style属性里的padding值)

.el-table .el-table__cell {
    padding: 5px 0!important;
}

或者

cell-style="padding:5px"

7.修改表格内字体颜色

:cell-style="isRed"

在methods:{}添加方法

isRed({ row, columnIndex }) {
  let colors = ["#ef3758", "#01D69E", "#FEB220", "#40B2D7"];
  if (columnIndex == 2) {        //columnIndex从0开始
    return {
      color: colors[row.deviceStatus],
    };
  }
},

8.表格内容居中(在每个el-table-column中添加)

align="center" 

9.添加表格边框 (在el-table中添加)

 border

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

闽ICP备14008679号