您现在的位置是:首页 > 伤感句子

vue table 行改变颜色

作者:言安琪时间:2024-04-02 13:00:42分类:伤感句子

简介  文章浏览阅读3.5k次。vue table 表格改变背景色和文字颜色_vue el-table某一行内容加颜色

点击全文阅读

改变表格行背景色
el-table :cell-style="TableCellStyle" //设置表格背景颜色  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;      }    }  }
改变行文字颜色

方案一

el-table :row-class-name="tableAddClass"tableAddClass({row,rowIndex}) {  if (row.is_halt) {    return 'tr-red';  }  return '';}<style scoped>  .el-table .tr-red {    color: red !important;  }</style>

方案二

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

点击全文阅读

郑重声明:

本站所有活动均为互联网所得,如有侵权请联系本站删除处理

上一篇:【Java】哈希表

下一篇:返回列表

我来说两句