vue elementui 设置表格背景色


效果:

 

 1. html  el-table 添加

:cell-style="TableCellStyle"

2. ts 代码

  //设置表格背景颜色
  TableCellStyle(row: any, column: any, rowIndex: any, columnIndex: any) {
    if (!row.columnIndex) {
      return 'background-color:  #e2e7ea';
    } else {
      if (row.columnIndex < 11) {
        return 'background-color:  #e2e7ea';
      } else {
        return null;
      }
    }

  }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM