From 1dfbdd345812e76abdeec3ee5efe9424dc13a733 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期二, 16 六月 2020 19:13:33 +0800 Subject: [PATCH] 2020-06-16 --- src/router/index.js | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 9cc1088..221e91f 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -8,7 +8,8 @@ const Main = asyncLoadComponent(() => import('@/views/main')) const Login = asyncLoadComponent(() => import('@/views/login')) const NotFound = asyncComponent(() => import('@/views/404')) -const Mobile = asyncLoadComponent(() => import('@/views/mobile')) +const MobManage = asyncLoadComponent(() => import('@/views/mobmanage')) +const MobDesign = asyncLoadComponent(() => import('@/views/mobdesign')) const PrintT = asyncLoadComponent(() => import('@/views/printTemplate')) const routers = [ @@ -16,7 +17,8 @@ {path: '/print/:param', name: 'print', component: PrintT, auth: false}, {path: '/ssologin/:param', name: 'ssologin', auth: true}, {path: '/main', name: 'main', component: Main, auth: true}, - {path: '/mobile', name: 'mobile', component: Mobile, auth: true}, + {path: '/mobmanage', name: 'mobmanage', component: MobManage, auth: true}, + {path: '/mobdesign', name: 'mobdesign', component: MobDesign, auth: true}, {path: '/main/:param', name: 'pmain', component: Main, auth: true} ] -- Gitblit v1.8.0