组织机构可配置区域、类型、层级

支持cas登录
This commit is contained in:
yaoyn
2024-09-19 15:47:06 +08:00
parent 78b05fc000
commit 54def95458
8 changed files with 377 additions and 260 deletions

View File

@ -43,10 +43,21 @@ export const LoginRoute: AppRouteRecordRaw = {
}
};
export const TokenLoginRoute: AppRouteRecordRaw = {
path: '/tokenLogin',
name: 'tokenLogin',
component: () => import('/@/views/secondDev/TokenLogin.vue'),
meta: {
title: t('Token登录'),
ignoreAuth: true//跳过登录检查
}
};
// Basic routing without permissions
// 未经许可的基本路由
export const basicRoutes = [
LoginRoute,
TokenLoginRoute,
RootRoute,
...mainOutRoutes,
REDIRECT_ROUTE,