From bcbc6eea0677eb0179b828238a38be0ba67ecc95 Mon Sep 17 00:00:00 2001 From: Mr Ke <kelq@hugeinfo.com.cn> Date: Mon, 06 Apr 2020 10:21:28 +0800 Subject: [PATCH] 修改antd主题颜色 --- src/index.js | 8 +++----- 1 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/index.js b/src/index.js index 4b40639..fe268fd 100644 --- a/src/index.js +++ b/src/index.js @@ -20,6 +20,7 @@ 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(); @@ -39,11 +40,8 @@ </Switch> <Content> <Switch> - {/* 信息采集 */} - <Route - path="/collect/jurisdictionPersonMgt" - component={JurisdictionPersonMgt} - /> + {/* 首页 */} + <Route path="/index/workbench" component={Workbench} /> <Route path="/login" component={Login} /> -- Gitblit v1.8.0