From a936b6074ddca01176e443b971d7a5652f71b951 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E4=BF=9D=E6=A1=A6?= <1103851924@qq.com> Date: Sat, 2 Apr 2022 11:22:18 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E5=A4=87=E7=AE=A1=E7=90=86=E8=B7=AF?= =?UTF-8?q?=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/router/module/admin/child/user.js | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 vue/full/src/router/module/admin/child/user.js diff --git a/vue/full/src/router/module/admin/child/user.js b/vue/full/src/router/module/admin/child/user.js new file mode 100644 index 0000000..68ce410 --- /dev/null +++ b/vue/full/src/router/module/admin/child/user.js @@ -0,0 +1,22 @@ +/*路由表:用户管理*/ + +const router = { + path: 'user', + meta: {title: '用户管理', icon: 'svg-stock'}, + children: [ + { + path: 'userInfo', + name: 'userInfoManagement', + component: 'admin/user/userInfo/', + meta: {title: '用户信息'} + }, + { + path: 'role', + name: 'roleManagement', + component: 'admin/user/role/', + meta: {title: '角色管理'} + }, + ] +} + +export default router \ No newline at end of file