import React from 'react'; import { Table } from '../../../../index'; class App extends React.Component { constructor(props = {}) { super(props); this.state = { selectedRowKeys: [], }; this.columns = [ { title: '需求标题', dataIndex: 'featureTitle', }, { title: '文档', dataIndex: 'doc', }, { title: '需求状态', dataIndex: 'featureStatus', }, { title: '优先级', dataIndex: 'priority', }, { title: 'PM', dataIndex: 'pm', }, { title: '产品线', dataIndex: 'productLine', }, { title: '前端', dataIndex: 'fe', }, { title: '服务端', dataIndex: 'server', }, { title: '创建时间', dataIndex: 'createTime', }, { title: '完成时间', dataIndex: 'completeTime', }, ]; this.data = Array.from( { length: 200, }, (_, key) => { const rowRandom = Math.round(Math.random() * 1000); const prioritySet = ['P0', 'P1', 'P2']; const priority = prioritySet[Math.round(Math.random() * 2)]; const featureStatusSet = ['待埋点', '开始', '待需详评', '测试', '已完成']; const featureStatus = featureStatusSet[Math.round(Math.random() * 4)]; const doc = 'https://semi.design'; const createTime = new Date().valueOf(); return ({ key, featureTitle: `需求-${rowRandom}`, doc, featureStatus, priority, pm: 'Li', productLine: 'Hotsoon', fe: '石嘉', server: 'ZhuYi', createTime, completeTime: createTime + rowRandom, }); } ); this.scroll = { y: 300, x: '100vw' }; } render() { const { selectedRowKeys } = this.state; return ( { this.setState({ selectedRowKeys: keys }); }, selectedRowKeys, }} pagination={false} columns={this.columns} dataSource={this.data} /> ); } } export default App;