From aae6bb75059718ca4ae0b3361a1a7ea48faca87e Mon Sep 17 00:00:00 2001 From: 三个三 <2029364173@qq.com> Date: 星期二, 20 六月 2023 12:12:49 +0800 Subject: [PATCH] !16 扩展第三方登录授权功能 * add 第三方授权 * add 第三方授权登录 --- src/router/index.ts | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/router/index.ts b/src/router/index.ts index bbfc448..33e3e5e 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -38,6 +38,11 @@ ] }, { + path: '/social-login', + hidden: true, + component: () => import('@/layout/components/socialLogin/index.vue') + }, + { path: '/login', component: () => import('@/views/login.vue'), hidden: true @@ -134,7 +139,7 @@ path: '/system/oss-config', component: Layout, hidden: true, - permissions: ['monitor:job:list'], + permissions: ['system:oss:list'], children: [ { path: 'index', -- Gitblit v1.9.3