2024年03月24日 elementui vue table tbale文字变色 文字颜色 css修改表格颜色 共享博客
项目中用到了elementui的表格,今天开会突然说要需要欠费的用户的一行文字为红色,那么安排一下。
如上图所示
首先,我们在el-table标签中加入 :row-class-name="tableAddClass" ,双引号自定定义命名。
<el-table :data="tableData" :row-class-name="tableAddClass"></el-table>
接着在methods中写入下放代码
tableAddClass({row,rowIndex}) { if (row.studentno == '1996') { return 'tr-red'; } return ''; }
row是当前行的数据,你可以获取row下任意字段进行判断,举个例子,我通过字段 studentno 判断学号为 1996 的学生添加类名 “tr-red”,根据自己的需求去判断(您可以根据自己的需求判断多个,定义多个css样式,你开心就好)。
rowIndex为当前行的索引。
最后,我们需要在CSS中定义颜色样式
<style scoped> /deep/.el-table .tr-red { color: red !important; } </style>
本文链接:http://so.lmcjl.com/news/310/