ant react 表格选中行设置背景色

我这个是自带的,其他博客里面可以自定义设置背景色,我这个需求没那么多要求

  <Table
            rowKey={record => record.index}
            bordered
            size={"small"}
            dataSource={data}
            columns={props.columns}
            // columns={newColumns()}
            // scroll={{x: true}}
            pagination={false}
            onRow={
                (record, index)=>{
                    return {
                        onClick:(event)=>{
                            onRowSelect(record, index)
                        }
                    }
                }
            }
        />

//表格index相等时候,classname加上ant-table-row-selected这个样式名就可以了

  

 

ant react 表格选中行设置背景色

上一篇:包机制


下一篇:Cocos Creator 常用优化技巧汇总