记录Ant-Vue-table中customCell改变单元格样式
Ant-Design-Vue table中使用customCell改变单元格样式自己记录一下自己对customCell的使用在ant-design-vue中的table中突然有了个根据某种规则把那个单个数据标红的业务需求官方文档中:在官方中的引用:使用首先在html中引入,把customCell绑定自己自定义的一个方法renderTdBackground()<a-tableref="tabl
·
Ant-Design-Vue table中使用customCell改变单元格样式
自己记录一下自己对customCell
的使用
在ant-design-vue中的table中突然有了个根据某种规则把那个单个数据标红的业务需求
官方文档中:
在官方中的引用:
使用
首先在html中引入,把customCell
绑定自己自定义的一个方法renderTdBackground()
<a-table
ref="table"
size="middle"
rowKey="id"
bordered
:pagination="false"
:columns="columns"
:dataSource="dataSource"
:loading="loading">
</a-table>
在columns
中需要的那一列定义customCell
const columns = [
...
{
title: '时间(s)',
dataIndex: 'time',
key:'time',
align: "center",
width: 100,
customCell:this.renderTimeBackground
},
...
]
在methods
中定义renderTdBackground()
和renderTimeBackground()
方法
renderTimeBackground(record){
return this.renderTdBackground(record,1)
},
这里多加了个flag
参数是我的columns
中不仅仅一个time
需要改变单元格样式
当时间超时timeOver == 1
的时候,说明time
超时了,需要标红这个单元格
renderTdBackground(record,flag){
if(flag == 1){
if(record.timeOver == 1){
return {
style: {
'background-color': 'rgb(255,150,150)',
},
}
}
}
},
效果
180这一列就是time
这一列,被标红警示
更多推荐
已为社区贡献4条内容
所有评论(0)