liudong
2024-08-08 98ddf2bd816abe50ac291b5810da753624192167
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export const WHITE_LIST = [
  { name: 'notFound', children: [] },
  { name: 'login', children: [] },
];
 
export const NOT_FOUND = {
  name: 'notFound',
};
 
export const REDIRECT_ROUTE_NAME = 'Redirect';
 
export const DEFAULT_ROUTE_NAME = 'Workplace';
 
export const DEFAULT_ROUTE = {
  title: 'menu.dashboard.workplace',
  name: DEFAULT_ROUTE_NAME,
  fullPath: '/dashboard/workplace',
};