import React from 'react';
|
import { Input, Button, DatePicker, Divider, message, Popconfirm, Select, Badge } 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} />
|
<LinkView sed="未检举报" local="未检举报" />
|
<NoInspectionReportTableList history={this.props.history} />
|
|
</div>
|
);
|
}
|
|
}
|