From a29edbd4c670e1907e38e98f20257e5519745a4d Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 08 十二月 2022 17:36:21 +0800 Subject: [PATCH] 2022-12-08 --- src/router/index.js | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index ab91632..b384ad4 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -25,6 +25,7 @@ const Interface = asyncLoadComponent(() => import('@/views/interface')) const RoleManage = asyncLoadComponent(() => import('@/views/rolemanage')) const SystemFunc = asyncLoadComponent(() => import('@/views/systemfunc')) +const SystemProc = asyncLoadComponent(() => import('@/views/systemproc')) const routers = [ {path: '/login', name: 'login', component: Login, auth: false}, @@ -47,6 +48,7 @@ {path: '/tab/:menuId', name: 'tab', component: MainParams, auth: false}, {path: '/role/:param', name: 'role', component: RoleManage, auth: true}, {path: '/hs', name: 'hs', component: SystemFunc, auth: true}, + {path: '/proc', name: 'proc', component: SystemProc, auth: true}, {path: '/interface', name: 'interface', component: Interface, auth: true} ] -- Gitblit v1.8.0