forked from liupeijun/kerwinWXApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
37 lines (37 loc) · 892 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
37
{
"pages":[
"pages/index/index",
"pages/photo/photo",
"pages/map/map",
"pages/detail/detail"
],
"window":{
"backgroundTextStyle":"dark",
"navigationBarBackgroundColor": "#14c145",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle":"white"
},
"tabBar": {
"selectedColor": "#14c145",
"list": [
{
"pagePath": "pages/index/index",
"text": "主页",
"iconPath": "images/home.png",
"selectedIconPath": "images/home_light.png"
},
{
"pagePath": "pages/photo/photo",
"text": "照片",
"iconPath": "images/camera.png",
"selectedIconPath": "images/camera_light.png"
},
{
"pagePath": "pages/map/map",
"text": "地图",
"iconPath": "images/search.png",
"selectedIconPath": "images/search_light.png"
}
]
}
}