/* eslint-disable */
|
/**柯礼钦
|
* 4/2/2020, 11:22:51 AM
|
* doc comment for the file goes here
|
*/
|
|
/** 信息采集-- 辖区人口管理 */
|
import React, { ReactNode, ReactEventHandler, Component } from 'react';
|
import JurisdictionPersonMgtPage from '../../components/page/jurisdictionPersonMgt';
|
import BreadcrumbView from '../../components/common/BreadcrumbView'
|
|
// import { Link } from 'react-router-dom';
|
// import { Icon } from 'antd';
|
|
export default class JurisdictionPersonMgt extends Component {
|
constructor(props) {
|
super(props);
|
this.config = {
|
navigationBarTitleText: '',
|
};
|
this.state = {
|
};
|
}
|
|
componentWillMount() { }
|
|
componentDidMount() { }
|
|
componentWillUnmount() { }
|
|
componentDidShow() { }
|
|
componentDidHide() { }
|
|
render() {
|
return (
|
<div className="jurisdiction-person-mgt-main margin bg-white">
|
<BreadcrumbView />
|
|
<JurisdictionPersonMgtPage {...this.props} />
|
</div>
|
)
|
}
|
}
|