From 23ef77aa1fa2d9ce3c10205f9cb77864a18e9ec4 Mon Sep 17 00:00:00 2001 From: liuwh <hugeinfo123> Date: Mon, 06 Apr 2020 15:43:09 +0800 Subject: [PATCH] 规章制度列表和全部通知列表 --- src/index.js | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/index.js b/src/index.js index fe268fd..9005a38 100644 --- a/src/index.js +++ b/src/index.js @@ -21,6 +21,9 @@ import Login from './pages/login/login'; import JurisdictionPersonMgt from './pages/collect/jurisdictionPersonMgt'; //信息采集--辖区人口管理 import Workbench from './pages/index/workbench'; //首页--工作台 +import System from './pages/index/System'; //首页--工作台 +import Announcement from './pages/index/Announcement'; //全部通知 + const { Content } = Layout; const history = createHashHistory(); @@ -40,8 +43,14 @@ </Switch> <Content> <Switch> + + {/* 全部通知 */} + <Route path="/index/workbench/announcement" component={Announcement} /> {/* 首页 */} <Route path="/index/workbench" component={Workbench} /> + <Route path="/index/system" component={System} /> + + <Route path="/login" component={Login} /> -- Gitblit v1.8.0