样式 style.less文件
.Stockgreen td{background-color: greenyellow ; }//样式名称最好自己命名,否则可能不生效。
.Stockyellow td{background-color:rgb(248, 250, 150) ;}
样式style.css文件。
.Stockgreen td{background-color: greenyellow ; }//样式名称最好自己命名,否则可能不生效。
.Stockyellow td{background-color:rgb(248, 250, 150) ;}
样式的引用
import styles from './style.less';
<Table
dataSource={this.state.data1}
columns={this.state.columns}
pagination={false}
rowKey={record => record.id}
rowClassName={(record, index) => (record.uniquecode !==null ? styles.Stockgreen : styles.Stockyellow)}
/>
链接:http://www.taodudu.cc/news/show-3947216.html?action=onClick