-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
50 lines (49 loc) · 1.23 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
49
50
{
"pages": [
"pages/splash/splash",
"pages/board/board",
"pages/search/search",
"pages/list/list",
"pages/item/item",
"pages/profile/profile"
],
"window": {
"navigationBarBackgroundColor": "#DA70D6",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "在线新闻",
"backgroundColor": "#ccc",
"backgroundTextStyle": "dark"
},
"tabBar": {
"color": "#ccc",
"selectedColor": "#35495e",
"borderStyle": "white",
"backgroundColor": "#DA70D6",
"list": [
{
"text": "热点",
"pagePath": "pages/board/board",
"iconPath": "images/hot.png",
"selectedIconPath": "images/hot_active.png"
},
{
"text": "搜索",
"pagePath": "pages/search/search",
"iconPath": "images/search.png",
"selectedIconPath": "images/search-actived.png"
},
{
"text": "我的",
"pagePath": "pages/profile/profile",
"iconPath": "images/profile.png",
"selectedIconPath": "images/profile-actived.png"
}
]
},
"sitemapLocation": "sitemap.json",
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
}
}