forked from nsjcy/frontEnd/nsjcy

liuwh
2020-05-09 62a240df3ff2f1bcddea834ccb15fccefc51ae26
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import React from 'react';
import { Breadcrumb } from 'antd';
import HeadView from '../view/HeadView';
import LinkView from '../view/LinkView';
import NoInspectionReportTableList from './NoInspectionReportTableList';
 
 
 
export default class NewlyList extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      data: [],
 
    };
  }
 
  componentDidMount() {
 
    document.title = '举报管理';
    // this.getData();
  }
 
  getData = () => {
 
  }
 
  render() {
 
    const { data, loading, resetKey } = this.state;
    return (
      <div className="app-page">
        <HeadView 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>
    );
  }
 
}