-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
49 lines (49 loc) · 1.25 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
{
"pages": [
"pages/play/play",
"pages/takeaway/takeaway",
"pages/index/index",
"pages/detail/detail",
"pages/mine/mine",
"pages/logs/logs"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Weixin",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#5A5A5A",
"selectedColor": "#548cd7",
"backgroundColor": "#FFF",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/play/play",
"text": "美食",
"iconPath": "images/tabBar/[email protected]",
"selectedIconPath": "images/tabBar/[email protected]"
},
{
"pagePath": "pages/takeaway/takeaway",
"text": "领券",
"iconPath": "images/tabBar/[email protected]",
"selectedIconPath": "images/tabBar/[email protected]"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "images/tabBar/[email protected]",
"selectedIconPath": "images/tabBar/[email protected]"
}
]
},
"style": "v2",
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
},
"sitemapLocation": "sitemap.json"
}