element-ui中table表格row-style通过两列数据比较改变table tr行的背景色以及行样式失效问题
<el-table v-loading=“loading” :data=“fixtureList” @selection-change=“handleSelectionChange” :max-height=“getHeight()” :row-style=“tableRowStyle” :row-class-name=“tableRowStyle1” size=“mini” border>
// 累计使用时长 >= 使用疲劳时间, 修改table tr行的背景色—行变色警告
方法1:
tableRowStyle({row,rowIndex}){
if(this.fixtureList[rowIndex].useCumulativeDuration >= this.fixtureList[rowIndex].fatigueDuration){
// return ‘color:red’; // 这样写无效,一个坑
let styleJson = {
“background”:"#ffa4a4"
};
return styleJson;
}
},
方法2:
tableRowStyle1({row,rowIndex}){
if(this.fixtureList[rowIndex].useCumulativeDuration >= this.fixtureList[rowIndex].fatigueDuration){
return ‘warning-row’
}
},
row-class-name / row-style / cell-class-name / cell-style这4个Table Attributes的详细使用,请看官网动手去试一下,实践出真知
本文介绍 Element-UI 中 table 组件如何通过 row-style 和 row-class-name 属性,根据数据条件改变表格行的背景颜色。提供了两种方法实现行变色警告功能,并指出直接返回 CSS 属性字符串的方式存在问题。
1万+

被折叠的 条评论
为什么被折叠?



