el-table行和列背景色 el-table背景色 cell-style
https://blog.csdn.net/qq_36802726/article/details/103149495
:cell-style="cellStyle"
cellStyle ({ row, column, rowIndex, columnIndex }) { if ( // columnIndex === 2 || // columnIndex === 3 || // columnIndex === 4 || // columnIndex === 5 column.label === "分值区间" || column.label === "自评分" || column.label === "评分" || column.label === "评分意见" || column.label === "得分/综合得分" ) { if (row.rowBackGround) { //指定坐标rowIndex :行,columnIndex :列 return "background:rgba(255,255,255,1) !important"; } else { return "background:rgba(240,240,240,1) !important"; } } else { if (row.rowBackGround) { //指定坐标rowIndex :行,columnIndex :列 return "background:rgba(255,255,255,0.7) !important"; } else { return "background:rgba(240,240,240,0.7) !important"; } } },