From 562ece16c022e154197e01170e9d0363ec0b9859 Mon Sep 17 00:00:00 2001
From: Mr Ke <kelq@hugeinfo.com.cn>
Date: Mon, 06 Apr 2020 16:43:03 +0800
Subject: [PATCH] 登录、菜单权限
---
src/index.js | 8 +++-----
1 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/src/index.js b/src/index.js
index 4b40639..45762db 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" component={Workbench} />
<Route path="/login" component={Login} />
--
Gitblit v1.8.0