-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathapp.json
48 lines (48 loc) · 1.36 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
{
"pages":[
"pages/index/index",
"pages/logs/logs",
"pages/detail/detail",
"pages/health_tools/health_tools"
],
"window":{
"navigationBarBackgroundColor": "green",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "微信接口功能演示",
"backgroundColor": "#eeeeee",
"backgroundTextStyle": "light"
},
"tabBar": {
"color":"white",
"selectedColor":"green",
"backgroundColor":"#332f4f",
"list": [{
"pagePath": "pages/index/index",
"text": "健康任务",
"iconPath":"../img/my_health_un.png",
"selectedIconPath":"../img/my_health_on.png"
}, {
"pagePath": "pages/health_tools/health_tools",
"text": "健康工具",
"color":"white",
"selectedColor":"green",
"iconPath":"../img/my_health_community_un.png",
"selectedIconPath":"../img/my_health_community_on.png"
}, {
"pagePath": "pages/detail/detail",
"text": "健康社区",
"color":"white",
"selectedColor":"green",
"iconPath":"img/my_health_consult_un.png",
"selectedIconPath":"img/my_health_consult_on.png"
},
{
"pagePath": "pages/detail/detail",
"text": "我的健康",
"color":"white",
"selectedColor":"green",
"iconPath":"img/my_account_un.png",
"selectedIconPath":"img/my_account_on.png"
}]
}
}