system.ts
1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import type { MenuModule } from '/@/router/types';
import { t } from '/@/hooks/web/useI18n';
const menu: MenuModule = {
orderNo: 2000,
menu: {
name: t('routes.demo.system.moduleName'),
path: '/system',
tag: {
dot: true,
},
children: [
{
path: 'account',
name: t('routes.demo.system.account'),
tag: {
dot: true,
type: 'warn',
},
},
{
path: 'role',
name: t('routes.demo.system.role'),
tag: {
content: 'new',
},
},
{
path: 'menu',
name: t('routes.demo.system.menu'),
tag: {
content: 'new',
},
},
{
path: 'dept',
name: t('routes.demo.system.dept'),
tag: {
content: 'new',
},
},
{
path: 'changePassword',
name: t('routes.demo.system.password'),
tag: {
content: 'new',
},
},
],
},
};
export default menu;