| 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
 | | export default defineAppConfig({ |  |   entryPagePath: 'pages/home/index', |  |   pages: ['pages/home/index', 'pages/mine/index', 'pages/workbenches/workbenches'], |  |   requiredPrivateInfos: ['getLocation', 'chooseLocation'], |  |   permission: { |  |     'scope.userLocation': { |  |       desc: '你的位置信息将用于小程序数据的效果展示', |  |     }, |  |   }, |  |   window: { |  |     backgroundTextStyle: 'light', |  |     navigationBarBackgroundColor: '#ff6d33', |  |     navigationBarTitleText: 'WeChat', |  |     navigationBarTextStyle: 'black', |  |     backgroundColorTop: '#ff6d33', |  |     backgroundColor: '#f7f7f7', |  |     backgroundColorBottom: '#f7f7f7', |  |     navigationStyle: 'custom', |  |   }, |  |   tabBar: { |  |     list: [ |  |       { |  |         pagePath: 'pages/home/index', |  |         iconPath: 'assets/tabbar/icon-home.png', |  |         selectedIconPath: 'assets/tabbar/icon-home-active.png', |  |         text: '首页', |  |       }, |  |       { |  |         pagePath: 'pages/workbenches/workbenches', |  |         iconPath: 'assets/tabbar/icon-task.png', |  |         selectedIconPath: 'assets/tabbar/icon-task-active.png', |  |         text: '工作台', |  |       }, |  |       { |  |         pagePath: 'pages/mine/index', |  |         iconPath: 'assets/tabbar/icon-mine.png', |  |         selectedIconPath: 'assets/tabbar/icon-mine-active.png', |  |         text: '我的', |  |       }, |  |     ], |  |     color: '#000', |  |     selectedColor: '#ff6d33', |  |     backgroundColor: '#fff', |  |     borderStyle: 'black', |  |     custom: true, |  |   }, |  |   lazyCodeLoading: 'requiredComponents', // 按需注入和用时注入(按需注入+占位组件) |  |   subpackages: [ |  |     { |  |       root: 'subpackages/login', |  |       pages: [ |  |         'authorization/authorization', |  |         'userPolicy/userPolicy', |  |         'loginByForm/loginByForm', |  |         'registerForm/registerForm', |  |         'mineUserPolicy/mineUserPolicy', |  |         'privacyPolicy/privacyPolicy', |  |       ], |  |     }, |  |     { |  |       root: 'subpackages/authentication', |  |       pages: [ |  |         'authenticationHome/authenticationHome', |  |         'authenticationFaRen/authenticationFaRen', |  |         'authenticationJBR/authenticationJBR', |  |         'authenticationResult/authenticationResult', |  |       ], |  |     }, |  |     { |  |       root: 'subpackages/mine', |  |       pages: [ |  |         'setting/setting', |  |         'mineFavorites/mineFavorites', |  |         'mineContactRecord/mineContactRecord', |  |         'mineFinanceManage/mineFinanceManage', |  |       ], |  |     }, |  |     { |  |       root: 'subpackages/businessCard', |  |       pages: [ |  |         'businessCard/businessCard', |  |         'businessCardEdit/businessCardEdit', |  |         'businessCardDetail/businessCardDetail', |  |         'businessCardShare/businessCardShare', |  |       ], |  |     }, |  |     { |  |       root: 'subpackages/task', |  |       pages: [ |  |         'publishTask/publishTask', |  |         'taskCheck/taskCheck', |  |         'taskCheckDetail/taskCheckDetail', |  |         'taskCheckedDetail/taskCheckedDetail', |  |         'taskHandleCheckDetail/taskHandleCheckDetail', |  |         'taskManage/taskManage', |  |         'batchTaskList/batchTaskList', |  |       ], |  |     }, |  |     { |  |       root: 'subpackages/jobApplicationManage', |  |       pages: [ |  |         'jobApplicationManage/jobApplicationManage', |  |         'jobApplicationDetail/jobApplicationDetail', |  |       ], |  |     }, |  |     { |  |       root: 'subpackages/city', |  |       pages: ['citySelect/citySelect'], |  |     }, |  |     { |  |       root: 'subpackages/flexJob', |  |       pages: ['flexJobDetail/flexJobDetail', 'flexJobDetailFromTask/flexJobDetailFromTask'], |  |     }, |  |     { |  |       root: 'subpackages/flexJobManage', |  |       pages: [ |  |         'flexJobManage/flexJobManage', |  |         'flexJobDetailFromManage/flexJobDetailFromManage', |  |         'flexJobSign/flexJobSign', |  |       ], |  |     }, |  |     { |  |       root: 'subpackages/extraPage', |  |       pages: ['extraPage/extraPage'], |  |     }, |  |   ], |  |   // preloadRule: { |  |   //   'pages/mine/index': { |  |   //     network: 'all', |  |   //     packages: ['subpackages/setting', 'subpackages/message'], |  |   //   }, |  |   // }, |  | }); | 
 |