diff --git a/web/client/src/sections/business/containers/reserveItemsPeriodicStatistics.jsx b/web/client/src/sections/business/containers/reserveItemsPeriodicStatistics.jsx index 3897498..7fa70e0 100644 --- a/web/client/src/sections/business/containers/reserveItemsPeriodicStatistics.jsx +++ b/web/client/src/sections/business/containers/reserveItemsPeriodicStatistics.jsx @@ -1,11 +1,49 @@ import React, { useEffect, useState } from 'react'; import { connect } from 'react-redux'; -import { Select, Input, Button, RadioGroup, Radio, Tooltip } from '@douyinfe/semi-ui'; +import { Select, Input, Button, RadioGroup, Radio, Table } from '@douyinfe/semi-ui'; import { IconSearch } from '@douyinfe/semi-icons'; import '../style.less' import moment from 'moment' const ReserveItemsPeriodicStatistics = (props) => { + const columns = [ + { + title: '序号', + dataIndex: 'name', + render: (text, record, index) => index + 1 + }, + { + title: '时间', + dataIndex: 'updateTime', + }, + { + title: '名称', + dataIndex: 'name', + }, + { + title: '操作', + dataIndex: 'action', + render: (text, record, indexe) => () + }, + ]; + const data = [ + { + key: '1', + name: 'Semi Design 设计稿.fig', + updateTime: '2020-02-02 05:13', + avatarBg: 'grey', + }, + { + key: '2', + name: 'Semi Design 分享演示文稿', + updateTime: '2020-01-17 05:31', + }, + { + key: '3', + name: '设计文档', + updateTime: '2020-01-26 11:01', + }, + ]; return ( <> @@ -26,12 +64,9 @@ const ReserveItemsPeriodicStatistics = (props) => {
+