-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
44 lines (44 loc) · 1.09 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
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/manage/manage",
"pages/me/me",
"pages/live/live",
"pages/addfarm/add"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"entryPagePath": "pages/index/index",
"tabBar": {
"color": "#888888",
"selectedColor": "#09BB07",
"backgroundColor": "#F6F6F6",
"list": [
{
"pagePath": "pages/index/index",
"text": "浏览",
"iconPath": "icons/tabbar/interact0.png",
"selectedIconPath": "icons/tabbar/interact1.png"
},
{
"pagePath": "pages/manage/manage",
"text": "管理",
"iconPath": "icons/tabbar/library0.png",
"selectedIconPath": "icons/tabbar/library1.png"
},
{
"pagePath": "pages/me/me",
"text": "我的",
"iconPath": "icons/tabbar/me0.png",
"selectedIconPath": "icons/tabbar/me1.png"
}
]
}
}