-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
43 lines (40 loc) · 1.13 KB
/
app.json
File metadata and controls
43 lines (40 loc) · 1.13 KB
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
{
"pages": [
"pages/index/index",
"pages/home/index/index",
"pages/home/actinfo/actinfo",
"pages/activity/index/index",
"pages/ucenter/index/index",
"pages/ucenter/actlist/actlist"
],
"window": {
"backgroundColor": "#ffffff",
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTitleText": "小鹿生活",
"navigationBarTextStyle": "black"
},
"tabBar": {
"selectedColor": "#AB956D",
"color": "#666666",
"list": [{
"pagePath": "pages/home/index/index",
"text": "首页",
"iconPath": "/images/tabbar_home_default.png",
"selectedIconPath": "/images/tabbar_home_selected.png"
},
{
"pagePath": "pages/activity/index/index",
"text": "发布活动",
"iconPath": "/images/tabbar_activity_default.png",
"selectedIconPath": "/images/tabbar_activity_selected.png"
},
{
"pagePath": "pages/ucenter/index/index",
"text": "我的",
"iconPath": "/images/tabbar_me_default.png",
"selectedIconPath": "/images/tabbar_me_selected.png"
}]
},
"sitemapLocation": "sitemap.json"
}