data.js
2.19 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
// menu-config.ts
// 配置数据(中英对照版)
export const APP_MENU = [
{
itemKey: "temp",
displayName: "app.menu.passengerFlowOverview",
icon: "pf-icon-traffic-overview",
path: "/pages/flowPage",
},
{
itemKey: "customerPortrait",
displayName: "PreMenu.customersasis", //'客群画像',
icon: "pf-icon-customer-portrait",
path: "/passenger-flow/customer-portrait",
},
{
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",
},
// {
// 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',
// },
// // #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'
// },
// // #ifndef MP-WEIXIN
// {
// itemKey: 'areaHeatmap',
// displayName: 'asis.HeatMap', //'区域热力',
// icon: 'sa-icon-area-heatmap',
// path: '/store-analysis/area-heatmap'
// },
// // #endif
// {
// itemKey: 'pendingTasks',
// displayName: 'app.home.waitMeDeal',
// icon: 'si-icon-pending-tasks',
// path: '/inspection/inspectionRecord?origin=processing'
// }
];