-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
42 lines (42 loc) · 1.19 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
{
"pages": [
"pages/home/home",
"pages/yuncun/yuncun",
"pages/search/search",
"pages/profile/profile"
],
"window": {
"navigationBarBackgroundColor": "#ff5777",
"navigationBarTextStyle": "white"
},
"tabBar": {
"selectedColor": "#ff5777",
"list": [
{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "/assets/image/tabBar/home_default.png",
"selectedIconPath": "/assets/image/tabBar/home_selected.png"
},
{
"pagePath": "pages/yuncun/yuncun",
"text": "云村",
"iconPath": "/assets/image/tabBar/dynamic_default.png",
"selectedIconPath": "/assets/image/tabBar/dynamic_selected.png"
},
{
"pagePath": "pages/search/search",
"text": "搜索",
"iconPath": "/assets/image/tabBar/search_default.png",
"selectedIconPath": "/assets/image/tabBar/search_selected.png"
},
{
"pagePath": "pages/profile/profile",
"text": "我的",
"iconPath": "/assets/image/tabBar/profile_default.png",
"selectedIconPath": "/assets/image/tabBar/profile_selected.png"
}
]
},
"sitemapLocation": "sitemap6.json"
}