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
54
55
56
57
58
59
60
61
62
63
export let accoutsRoute = [
// 平台用户管理
{
path: '/users',
name: '平台用户管理',
component: () => import('@/page/accounts/users'),
meta:{
showBreadcrumb:true,
title:'平台用户管理',
}
},
//统计用户管理
{
path: '/statisticalUser',
name: '统计用户管理',
component: () => import('@/page/accounts/statistical'),
meta:{
showBreadcrumb:true,
title:'统计用户管理',
}
},
// 平台用户单位管理员账号
{
path: '/unitAdmin',
name: '平台用户单位管理员账号管理',
component: () => import('@/page/accounts/unitAdmin'),
meta:{
showBreadcrumb:true,
title:'单位管理员账号管理',
}
},
// 单位用户单位管理员账号
{
path: '/dbUnitAdmin',
name: '单位用户单位管理员账号',
component: () => import('@/page/accounts/dbUnitAdmin'),
meta:{
showBreadcrumb:true,
title:'单位用户单位管理员账号',
}
},
// 机顶盒运维账号管理
{
path: '/stbAccount',
name: '机顶盒运维账号',
component: () => import('@/page/accounts/stbAdmin'),
meta:{
showBreadcrumb:true,
title:'机顶盒运维账号',
}
},
// 账号禁用审核
{
path: '/recheck',
name: '账号禁用审核',
component: () => import('@/page/accounts/recheck'),
meta:{
showBreadcrumb:true,
title:'账号禁用审核',
}
}
]