videoShopTour.js
3.87 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
const videoShopTourRouterMap = {
path: '/videoShopTour',
meta: {
permissionPath: 'videoShopTour'
},
component: () => import('@/views/VideoShopTour/'),
children: [{
name: 'deviceManagement',
path: '/videoShopTour/deviceManagement',
meta: {
permissionPath: 'deviceManagement'
},
component: () => import('@/views/VideoShopTour/deviceManagement/'),
},
{
path: '/videoShopTour/monitoringPointManagement',
name: 'monitoringPointManagement',
meta: {
permissionPath: 'monitoringPointManagement'
},
component: () => import('@/views/VideoShopTour/monitoringPointManagement/'),
},
{
path: '/videoShopTour/realTimeVideo',
name: 'realTimeVideo',
meta: {
permissionPath: 'realTimeVideo'
},
component: () => import('@/views/VideoShopTour/realTimeVideo/'),
},
{
path: 'systemSOPManagement',
name: 'systemSOPManagement',
meta: {
permissionPath: 'systemSOPManagement'
},
component: () =>
import('@/views/VideoShopTour/SystemSOPManagement/'),
},
{
path: 'groupSOPManagement',
name: 'groupSOPManagement',
meta: {
permissionPath: 'groupSOPManagement'
},
component: () =>
import('@/views/VideoShopTour/GroupSOPManagement/'),
},
{
path: 'remoteShopInspection',
name: 'remoteShopInspection',
meta: {
permissionPath: 'remoteShopInspection'
},
component: () =>
import('@/views/VideoShopTour/RemoteShopInspection/'),
},
{
path: 'inspectionRecord',
name: 'inspectionRecord',
meta: {
permissionPath: 'inspectionRecord'
},
component: () =>
import('@/views/VideoShopTour/InspectionRecord/'),
},
{
path: 'initiatedItem',
name: 'initiatedItem',
meta: {
permissionPath: 'initiatedItem'
},
component: () =>
import('@/views/VideoShopTour/InitiatedItem/'),
},
{
path: 'pendingItem',
name: 'pendingItem',
meta: {
permissionPath: 'pendingItem'
},
component: () =>
import('@/views/VideoShopTour/PendingItem/'),
},
{
path: 'presetPointManagement',
name: 'presetPointManagement',
meta: {
permissionPath: 'presetPointManagement'
},
component: () =>
import('@/views/VideoShopTour/PresetPointManagement/'),
},
{
path: 'captureConfiguration',
name: 'captureConfiguration',
meta: {
permissionPath: 'captureConfiguration'
},
component: () =>
import('@/views/VideoShopTour/captureConfiguration/'),
},
{
path: 'routineCheckTask',
name: 'routineCheckTask',
meta: {
permissionPath: 'routineCheckTask'
},
component: () =>
import('@/views/VideoShopTour/routineCheckTask/'),
},
{
path: 'routineCheckRecord',
name: 'routineCheckRecord',
meta: {
permissionPath: 'routineCheckRecord'
},
component: () =>
import('@/views/VideoShopTour/routineCheckRecord/'),
},
{
path: 'configurationCheckItem',
name: 'configurationCheckItem',
meta: {
permissionPath: 'configurationCheckItem'
},
component: () =>
import('@/views/VideoShopTour/configurationCheckItem/'),
},
{
path: 'inspectionReport',
name: 'inspectionReport',
meta: {
permissionPath: 'inspectionReport'
},
component: () =>
import('@/views/VideoShopTour/inspectionReport/'),
},
{
path: 'inspectionReportManual',
name: 'inspectionReportManual',
meta: {
permissionPath: 'inspectionReportManual'
},
component: () =>
import('@/views/VideoShopTour/inspectionReportManual/'),
},
]
}
export default videoShopTourRouterMap