| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- 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 (
- <Table
- rowSelection={{
- onChange: keys => {
- this.setState({ selectedRowKeys: keys });
- },
- selectedRowKeys,
- }}
- pagination={false}
- columns={this.columns}
- dataSource={this.data}
- />
- );
- }
- }
- export default App;
|