pages.json
4.02 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
{
"pages": [
// 引导页
{
"path": "pages/start/index",
"style": {
"navigationStyle": "custom" //自定义头部
}
},
// 用户登录页
{
"path": "pages/login/user",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "登录"
}
},
// 手机登录页
{
"path": "pages/login/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "登录"
}
},
// 首页
{
"path": "pages/index/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "神领物流"
}
},
// 搜索页
{
"path": "pages/search/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "神领物流"
}
},
// 历史取派
{
"path": "pages/history/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "历史派送"
}
},
// 消息
{
"path": "pages/news/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "消息"
}
},
// 消息详情
{
"path": "pages/news/detail",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "详情"
}
},
// 系统通知列表
{
"path": "pages/news/system",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "系统通知"
}
},
// 运费查询
{
"path": "pages/freight/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "运费查询"
}
},
// 取件
{
"path": "pages/delivery/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "取件"
}
},
// 取件
{
"path": "pages/pickup/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "派件"
}
},
// 转单
{
"path": "pages/turnorder/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "转单"
}
},
// 订单取消
{
"path": "pages/cancel/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "订单取消原因申请"
}
},
// 订单原因
{
"path": "pages/cancel/cause",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "订单取消原因申请"
}
},
// 取件详情取取件
{
"path": "pages/details/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "去取件"
}
},
// 运单详情
{
"path": "pages/details/waybill",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "运单详情"
}
},
// 寄付、到付取件成功
{
"path": "pages/pay/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "取件成功"
}
},
// 扫码支付
{
"path": "pages/pay/scanPay",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "扫码支付"
}
},
// 扫码支付
{
"path": "pages/my/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "我的"
}
},
// 作业范围
{
"path": "pages/my/map",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "作业范围"
}
},
// 专属二维码
{
"path": "pages/my/qrCode",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "专属二维码"
}
},
// 订单跟踪
{
"path": "pages/details/orderMap",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "订单跟踪"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "神领物流",
// "navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8",
"onReachBottomDistance": 50
// "app-plus": {
// "background": "#efeff4"
// }
},
"condition": { // 模式配置,仅开发期间生效
"current": 0, // 当前激活的模式(list 的索引项)
"list": [{
"name": "", // 模式名称
"path": "", // 启动页面,必选
"query": "" // 启动参数,在页面的onLoad函数里面得到
}]
}
}