| | |
| | | import React from 'react'; |
| | | import { Input, Button, DatePicker, Divider, message, Popconfirm, Select, Badge } from 'antd'; |
| | | import { Breadcrumb } from 'antd'; |
| | | import HeadView from '../view/HeadView'; |
| | | import LinkView from '../view/LinkView'; |
| | | import NoInspectionReportTableList from './NoInspectionReportTableList'; |
| | |
| | | |
| | | componentDidMount() { |
| | | |
| | | document.title = '未检举报'; |
| | | document.title = '举报管理'; |
| | | // this.getData(); |
| | | } |
| | | |
| | |
| | | return ( |
| | | <div className="app-page"> |
| | | <HeadView history={this.props.history} /> |
| | | <LinkView sed="未检举报" local="未检举报" /> |
| | | <NoInspectionReportTableList history={this.props.history} /> |
| | | |
| | | <Breadcrumb style={{ padding: '20px' }}> |
| | | <Breadcrumb.Item><a href="">后台中心</a></Breadcrumb.Item> |
| | | <Breadcrumb.Item>举报管理</Breadcrumb.Item> |
| | | </Breadcrumb> |
| | | <div style={{ background: '#fff', margin: 20 }}> |
| | | <NoInspectionReportTableList history={this.props.history} /> |
| | | </div> |
| | | </div> |
| | | ); |
| | | } |