-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
33 lines (33 loc) · 868 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
{
"pages":[
"pages/bus/bus",
"pages/index/index",
"pages/weather/weather",
"pages/express/express",
"pages/bus/busDetail",
"pages/feedback/feedback"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "应用",
"navigationBarTextStyle":"black"
},
"tabBar": {
"color": "#dddddd",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/bus/bus",
"iconPath": "image/icon_component.png",
"selectedIconPath": "image/icon_component_HL.png",
"text": "公交"
}, {
"pagePath": "pages/index/index",
"iconPath": "image/icon_API.png",
"selectedIconPath": "image/icon_API_HL.png",
"text": "应用"
}]
}
}