iview Table自定义行样式

ct2axkht  于 2022-11-19  发布在  其他
关注(0)|答案(1)|浏览(302)

行的 className 的回调方法,传入参数:
row:当前行数据
index:当前行的索引

bug:实际的index是鼠标经过的行的索引

u5rb5r59

u5rb5r591#

------------------------------------------------------------- rowClassName(row, index){ console.log(index); if (index===0) { return 'firstComparisonColor'; } else if (index === 2) { return 'secondComparisonColor'; } } ------------------------------------------------------------- .secondComparisonColor{ background-color: #fff; color: #999 ; } .ivu-table .demo-table-info-row td{ background-color: #2db7f5; color: #fff; }

相关问题