From e0c0e3607e8709c7dacd1ae63f99b3f7d8214dda Mon Sep 17 00:00:00 2001 From: wangxiang <1827945911@qq.com> Date: Fri, 15 Sep 2023 14:43:04 +0800 Subject: [PATCH] chore: external sso identity --- src/router/routes/mainOut.ts | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/router/routes/mainOut.ts b/src/router/routes/mainOut.ts index 6ecbaed..bbc4130 100644 --- a/src/router/routes/mainOut.ts +++ b/src/router/routes/mainOut.ts @@ -1,20 +1,25 @@ /** -The routing of this file will not show the layout. -It is an independent new page. -the contents of the file still need to log in to access + * The routing of this file will not show the layout. + * It is an independent new page. + * the contents of the file still need to log in to access */ import type { AppRouteModule } from '/@/router/types'; -// test -// http:ip:port/main-out export const mainOutRoutes: AppRouteModule[] = [ { path: '/main-out', name: 'MainOut', component: () => import('/@/views/demo/main-out/index.vue'), meta: { - title: 'MainOut', - ignoreAuth: true, + title: 'MainOut' + }, + }, + { + path: '/identity', + name: 'Identity', + component: () => import('/@/views/system/user/sso/index.vue'), + meta: { + title: 'SSO身份管理', }, }, ];