-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
51 lines (51 loc) · 1.44 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
50
51
{
"pages": [
"pages/nearbyLine/nearbyLine",
"pages/linePlan/linePlan",
"pages/recently/recently",
"pages/collected/collected",
"pages/searchPage/searchPage",
"pages/lineList/lineList",
"pages/lineDetail/lineDetail",
"pages/linePlanResult/linePlanResult",
"pages/detailTransition/detailTransition"
],
"window": {
"navigationBarBackgroundColor": "#0082dc",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "公交查询",
"backgroundColor": "#ebebf1"
},
"tabBar": {
"color": "#666",
"selectedColor": "#0082dc",
"backgroundColor": "#fbfbfd",
"borderStyle": "dark",
"list": [
{
"pagePath": "pages/nearbyLine/nearbyLine",
"text": "附近线路",
"iconPath": "images/location.png",
"selectedIconPath": "images/location-selected.png"
},
{
"pagePath": "pages/linePlan/linePlan",
"text": "路线规划",
"iconPath": "images/lineplan.png",
"selectedIconPath": "images/lineplan-selected.png"
},
{
"pagePath": "pages/recently/recently",
"text": "最近使用",
"iconPath": "images/history.png",
"selectedIconPath": "images/history-selected.png"
},
{
"pagePath": "pages/collected/collected",
"text": "我的收藏",
"iconPath": "images/collection.png",
"selectedIconPath": "images/collection-selected.png"
}
]
}
}