写在前面:
需求:高亮“客户名称”是“晓明”的数据行
实现:
用到 ant design vue table 的api:rowClassName
vue文件相关代码
<script>
methods() {
rowClassName(record,index) {
return record.custName == '晓明'? 'row-background':''
}
}
</script>
<style scoped>
/deep/.row-backgorund {
backgorund-color:pink;
}
</style>
效果图