vue element框架,table组件给指定行添加高亮效果
vue element框架,table组件给指定行添加高亮效果// 组件<el-table:data="userList":row-class-name="tableRowClassName" // row-class-name是一个回调函数,返回值是对应行的class名><el-table-column type="sel...
·
vue element框架,table组件给指定行添加高亮效果
// 组件
<el-table
:data="userList"
:row-class-name="tableRowClassName" // row-class-name是一个回调函数,返回值是对应行的class名
>
<el-table-column type="selection"></el-table-column>
</el-table
// 回调函数
tableRowClassName({ row, rowIndex }) {
console.log(rowIndex) // 每一行的索引
if (rowIndex === 1) {
return 'warning-row'
}
return ''
},
// css样式
.el-table .warning-row {
background: #aaa !important;
}
.el-table .warning-row:hover>td {
background: #bbb !important;
}
更多推荐
已为社区贡献1条内容
所有评论(0)