在el-table中 使用:cell-style = “yourStyle” ,在methods中实现yourStyle函数,该函数返回要设置样式,示例如下:
<el-table :cell-style = 'yourStyle'></el-table>
<script>
export default{
...
methods: {
yourStyle({row, column, rowIndex, columnIndex}):{
if(column.label === ''){ // 根据label(列名)确定要修改的列
if (row.yourRow === 'A') { // 判断每行yourRow的值
return 'color: red; font-size: "5px" '
}else if (row.yourRow === 'B') {
return 'color: green; font-size: "8px" '
}
}
}
}
}
</script>