| | |
| | | import Index from './pages/Index'; |
| | | import Login from './pages/login/login'; |
| | | import JurisdictionPersonMgt from './pages/collect/jurisdictionPersonMgt'; //信息采集--辖区人口管理 |
| | | import Workbench from './pages/index/workbench'; //首页--工作台 |
| | | |
| | | const { Content } = Layout; |
| | | const history = createHashHistory(); |
| | |
| | | </Switch> |
| | | <Content> |
| | | <Switch> |
| | | {/* 信息采集 */} |
| | | <Route |
| | | path="/collect/jurisdictionPersonMgt" |
| | | component={JurisdictionPersonMgt} |
| | | /> |
| | | {/* 首页 */} |
| | | <Route path="/index/workbench" component={Workbench} /> |
| | | |
| | | <Route path="/login" component={Login} /> |
| | | |