policeSecurity/securityManagement/src/config/index.ts

36 lines
1.0 KiB
TypeScript
Raw Normal View History

2024-09-03 11:28:48 +08:00
import {SystemMenu} from "@/types/config";
2024-08-30 18:01:34 +08:00
export const ROUTER_WHITE_LIST: string[] = ['/login', '/test','/enterprise'];
2024-09-03 11:28:48 +08:00
export const CLIENT_TYPE:string = "MANAGEMENT_SECURITY";
export const SYSTEM_MENUS: SystemMenu[] = [
{
title: '首页',
name: 'index',
path: '/index',
type: "menu",
component: () => import('@/views/index.vue')
}, {
title: '单位管理',
name: 'userManagement',
path: '/userManagement',
type: 'dir',
children: [
{
title: '用户管理',
name: 'bgManagement',
path: '/bgManagement',
type: 'menu',
component: () => import('@/views/userManagement/bgManagement/index.vue')
}, {
title: '小程序管理',
name: 'uniManagement',
path: '/uniManagement',
type: 'menu',
component: () => import('@/views/userManagement/uniManagement/index.vue')
}
]
}
]