// 不用了,因为不能修改hover的颜色
// :row-style="rowstyle"
// 冻结的颜色设置
// rowstyle({ row, rowIndex }) {
// if (row.frozen == 1) {
// let stylejson = {};
// stylejson.background = "#afd6ff";
// return stylejson
// } else {
// return ''
// }
// },
// 冻结的颜色设置
tableRowClassName({ row, rowIndex }) {
if (row.frozen == 1) {
return 'tableRowFrozenColor'
} else {
return ''
}
},
网友评论