-
Notifications
You must be signed in to change notification settings - Fork 130
/
app.json
36 lines (36 loc) · 949 Bytes
/
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
{
"pages": [
"pages/index/index",
"pages/explore/explore",
"pages/destination/destination",
"pages/poi_list/poi_list",
"pages/trip_list/trip_list",
"pages/waypoint/waypoint",
"pages/user/user",
"pages/trip/trip"
],
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#4abdcc",
"navigationBarTitleText": "面包旅行",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#b0b0b0",
"selectedColor": "#4abdcc",
"borderStyle": "white",
"backgroundColor": "#fff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "images/index_normal.png",
"selectedIconPath": "images/index_pressed.png",
"text": "推荐"
}, {
"pagePath": "pages/explore/explore",
"iconPath": "images/explore_normal.png",
"selectedIconPath": "images/explore_pressed.png",
"text": "发现"
}]
},
"debug": true
}