data.js
4.09 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
// menu-config.ts
// 配置数据(中英对照版)
export const APP_MENU = [
{
sectionKey: "passengerFlow",
displayName: "PreMenu.analysis",
iconPrefix: "pf-icon",
items: [
{
itemKey: "trafficOverview",
displayName: "app.menu.passengerFlowOverview",
icon: "pf-icon-traffic-overview",
path: "/pages/flowPage",
},
// {
// itemKey: 'timeDetails',
// displayName: '时段明细',
// icon: 'pf-icon-time-details',
// path: '/passenger-flow/time-details',
// },
{
itemKey: "customerPortrait",
displayName: "PreMenu.customersasis", //'客群画像',
icon: "pf-icon-customer-portrait",
path: "/passenger-flow/customer-portrait",
},
// {
// itemKey: "stayDuration",
// displayName: "PreAccIndex.ResidenceTime", // '停留时长',
// icon: "pf-icon-stay-duration",
// path: "/passenger-flow/stay-duration",
// },
// {
// itemKey: "conversionAnalysis",
// displayName: "PreMallChart.mall_flow_conversion.funnel", //'流量转化',
// icon: "pf-icon-conversion",
// path: "/passenger-flow/conversion",
// },
// {
// itemKey: "storeRanking",
// displayName: "PreMenu.regionalRanking", // '门店排行',
// icon: "pf-icon-store-ranking",
// path: "/passenger-flow/store-ranking",
// },
],
},
// {
// sectionKey: "storeAnalysis",
// displayName: "asisTab.regionalAnalysis", //'店内分析',
// iconPrefix: "sa-icon",
// items: [
// // #ifndef MP-WEIXIN
// {
// itemKey: "storeHeatmap",
// displayName: "PreMenu.jointheatmap", // '门店热力',
// icon: "sa-icon-store-heatmap",
// path: "/store-analysis/store-heatmap",
// },
//// #endif
// {
// itemKey: "areaStatistics",
// displayName: "PreMenu.regionalStatistics", // '区域统计',
// icon: "sa-icon-area-statistics",
// path: "/store-analysis/area-statistics",
// },
// {
// itemKey: 'areaPortrait',
// displayName: '区域画像',
// icon: 'sa-icon-area-portrait',
// path: '/store-analysis/area-portrait'
// },
//// #ifndef MP-WEIXIN
// {
// itemKey: "areaHeatmap",
// displayName: "asis.HeatMap", //'区域热力',
// icon: "sa-icon-area-heatmap",
// path: "/store-analysis/area-heatmap",
// },
//// #endif
// {
// itemKey: 'areaCorrelation',
// displayName: '区域关联',
// icon: 'sa-icon-area-correlation',
// path: '/store-analysis/area-correlation'
// }
// ],
// },
// {
// sectionKey: 'smartInspection',
// displayName: 'app.menu.smartInspectionStore', // '智能巡店',
// iconPrefix: 'si-icon',
// items: [{
// itemKey: 'videoPatrol',
// displayName: 'PreMenu.remoteShopInspection', // '视频巡店',
// icon: 'si-icon-video-patrol',
// path: '/pages/inspection/index',
// tab: '/pages/inspection/index',
// },
// {
// itemKey: 'inspectionRecords',
// displayName: 'Management.storeInspectionRecord', // '巡检记录',
// icon: 'si-icon-inspection-records',
// path: '/pages/inspection/inspectionRecord',
// subPackage: '/subPackages/accountGroup'
// },
// {
// itemKey: 'pendingTasks',
// displayName: 'app.home.waitMeDeal',
// icon: 'si-icon-pending-tasks',
// path: '/pages/inspection/inspectionRecord?origin=processing',
// subPackage: '/subPackages/accountGroup'
// }
// ]
// },
{
sectionKey: "YAPReport",
displayName: "YAP Report", // '智能巡店',
iconPrefix: "si-icon",
items: [
{
itemKey: "GroupStats",
displayName: "Group Stats",
icon: "yap-icon-groupStats",
path: "/yap-report/group-stats",
subPackage: "/subPackages/accountGroup",
},
{
itemKey: "StoreStats",
displayName: "Store Stats",
icon: "yap-icon-storeStats",
path: "/yap-report/store-stats",
subPackage: "/subPackages/accountGroup",
},
],
},
];