ElementUi中table组件使用row-class-name修改指定行
使用方法
//我这里使用的rowName这个方法名
:row-class-name="rowName"
<el-table v-loading="loading" :data="dataList" :row-class-name="rowName">
</el-table>
methods: {
rowName({row, column, rowIndex, columnIndex}) {
let day = this.getNumberOfDays(row.createTime, new Date())
//时间差大于等于7天改变颜色
if (day>=7){
return 'rowName'
}
},
//获得天数
getNumberOfDays(startDate,endDate){
//startDate:开始日期,endDate结束日期
var a1 = Date.parse(new Date(startDate));
var a2 = Date.parse(new Date(endDate));
var day = parseInt((a2-a1)/ (1000 * 60 * 60 * 24));//核心:时间戳相减,然后除以天数
return day
}
}
<style scoped>
/deep/ .el-table .rowName {
background: pink !important;
color: #070707
}
</style>