customer.js
3.06 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
const customerRouterMap = {
path: '/customer',
meta: {
permissionPath: 'customer'
},
component: () => import('@/views/Customer/customer'),
children: [
// {
// name: 'flowheat',
// path: '/customer/flowheat',
// component: () => import('@/views/Customer/PointHeat/pointheat'),
// children: [{
// path: 'trafficheat',
// name: 'trafficheat',
// component: () => import('@/views/Customer/PointHeat/trafficheat'),
// }]
// },
{
name: 'happinessindex',
path: '/customer/happinessindex',
meta: {
permissionPath: 'happinessindex'
},
component: () => import('@/views/Customer/happinessIndex/happinessIndex'),
},
{
path: '/customer/trafficdirection',
name: 'trafficdirection',
meta: {
permissionPath: 'trafficdirection'
},
component: () => import('@/views/Customer/ftmovingline/ftMovingLine'),
children: [{
path: 'ftml',
name: 'ftml',
meta: {
permissionPath: 'trafficdirection'
},
component: () => import('@/views/Customer/ftmovingline/ftml'),
}]
},
{
path: '/customer/zonedirection',
meta: {
permissionPath: 'zonedirection'
},
component: () => import('@/views/Customer/ZoneDirection/zoneDirect'),
children: [{
path: 'zonegraph',
name: 'zonegraph',
meta: {
permissionPath: 'zonedirection'
},
component: () => import('@/views/Customer/ZoneDirection/zoneTraffic'),
}]
},
{
path: '/customer/residencetime',
name: 'residencetime',
meta: {
permissionPath: 'residencetime'
},
component: () => import('@/views/Customer/residenceTime/residencetime'),
children: [{
path: 'rtasis',
name: 'rtasis',
meta: {
permissionPath: 'residencetime'
},
component: () => import('@/views/Customer/residenceTime/rtasis'),
}]
},
{
path: '/customer/customtrack',
name: 'customTrack',
meta: {
permissionPath: 'customtrack'
},
component: () => import('@/views/Customer/customTrack/customtrack'),
},
{
path: '/customer/storeheat',
name: 'storeheat',
meta: {
permissionPath: 'storeheat'
},
component: () => import('@/views/Customer/AreaHeat/areaheat'),
},
{
path: '/customer/boothheat',
name: 'boothheat',
meta: {
permissionPath: 'boothheat'
},
component: () => import('@/views/Customer/Faceheat/faceheat'),
},
{
path: '/customer/moveline',
name: 'moveline',
meta: {
permissionPath: 'moveline'
},
component: () => import('@/views/Customer/TraffickTrack/tfTrack'),
children: [{
path: 'trackline',
name: 'trackline',
meta: {
permissionPath: 'moveline'
},
component: () => import('@/views/Customer/TraffickTrack/trackLine'),
}]
},
]
}
export default customerRouterMap