Ant Design 表格tr行添加背景色

.clickRowStyle{background-color:#ecf6fd;}
//高亮
setRowClassName(record){
if(record.orderCode == null || record.warehouseCode == null || record.operateTime == null){
return 'clickRowStyle'
}
}
 
<Table
components={this.components}
columns={columns}
dataSource={this.state.tData}
scroll={{ x:2100,y:400}}
pagination={this.state.pagination}
onChange={this.handleTableChange}
rowClassName={this.setRowClassName} //高亮
/>
 
 
posted @ 2019-05-06 14:40  刘丑丑鱼香肉丝  阅读(6006)  评论(0编辑  收藏  举报