forked from ibwei/-Bus-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
49 lines (49 loc) · 1.2 KB
/
app.json
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
{
"pages": [
"pages/home/index",
"pages/addAddress/index",
"pages/address/index",
"pages/bus/index",
"pages/busDetail/index",
"pages/coupon/index",
"pages/driver/index",
"pages/message/index",
"pages/mine/index",
"pages/myticket/index",
"pages/newbus/index",
"pages/order/index",
"pages/passenger/index",
"pages/pay/index",
"pages/tel/index"
],
"window": {
"backgroundTextStyle": "dark",
"backgroundColor": "#efefef",
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTitleText": "校园快递Bus",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#8a8a8a",
"selectedColor": "#53bc64",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/home/index",
"iconPath": "common/assets/tab/bus.png",
"selectedIconPath": "common/assets/tab/bus_selected.png",
"text": "BUS"
},
{
"pagePath": "pages/mine/index",
"iconPath": "common/assets/tab/user.png",
"selectedIconPath": "common/assets/tab/user_selected.png",
"text": "我的"
}
]
},
"networkTimeout": {
"request": 10000
}
}