react antd table 根据条件设置列的样式
const columns = [ { title: '数量', dataIndex: 'num', onCell: (record) => { if (record.num === '1') { return { style: { background: '#FAFBFB' } } } } } ]
解决!!
const columns = [ { title: '数量', dataIndex: 'num', onCell: (record) => { if (record.num === '1') { return { style: { background: '#FAFBFB' } } } } } ]
解决!!