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";
|
|
|
|
|
2024-09-05 10:41:57 +08:00
|
|
|
export const UNIT_TYPE = {
|
|
|
|
security: 'SECURITY_UNIT',
|
|
|
|
police: 'POLICE_UNIT'
|
|
|
|
}
|
2024-09-03 11:28:48 +08:00
|
|
|
export const SYSTEM_MENUS: SystemMenu[] = [
|
|
|
|
{
|
|
|
|
title: '首页',
|
|
|
|
name: 'index',
|
|
|
|
path: '/index',
|
|
|
|
type: "menu",
|
|
|
|
component: () => import('@/views/index.vue')
|
|
|
|
}, {
|
2024-09-03 18:25:25 +08:00
|
|
|
title: '用户管理',
|
2024-09-03 11:28:48 +08:00
|
|
|
name: 'userManagement',
|
|
|
|
path: '/userManagement',
|
|
|
|
type: 'dir',
|
|
|
|
children: [
|
|
|
|
{
|
2024-09-03 18:25:25 +08:00
|
|
|
title: '后台管理',
|
2024-09-03 11:28:48 +08:00
|
|
|
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')
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|