使用element—UI中的表格单独改变一项的字体颜色

一分钟学会怎么修改el-table样式

<el-table :cell-style="tableRowStyle">//添加一个cell-style属性

tableRowStyle({  row, column, rowIndex, columnIndex }){ 
	if(row.name === '张三'){ 
	//张三的那一行所有字体颜色都是红色
		return 'color:red;!important;'
	}
	if(columnIndex === 3){ 
	//第3列字体颜色是红色
		return 'color:red;!important;'
	}
	if(row.name === '张三' && columnIndex === 3){ 
	//张三的那一行第3列字体颜色是红色
		return 'color:red;!important;'
	}
},

代码上了就不上效果图了,告辞!

    原文作者:xiaopang_ty
    原文地址: https://blog.csdn.net/huashenty/article/details/122062565
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞