From be85e2d1d8b671fe527e2efac84df5e99b404028 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期五, 09 十二月 2022 15:23:56 +0800 Subject: [PATCH] Merge branch 'develop' --- 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