-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
48 lines (46 loc) · 1005 Bytes
/
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
{
"pages": [
"pages/index/index",
"pages/search/index",
"pages/map/index",
"pages/placeDetail/index",
"pages/placeBook/index",
"pages/orderDetail/index",
"pages/location/index"
],
"window": {
"navigationBarTitleText": "场地预订",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
},
"tabBar": {
"backgroundColor": "#ffffff",
"color": "#a9b2ae",
"selectedColor": "#0685cc",
"list": [
{
"iconPath": "/images/book.png",
"selectedIconPath": "/images/book.png",
"pagePath": "pages/index/index",
"text": "预订"
},
{
"iconPath": "/images/match.png",
"selectedIconPath": "/images/match.png",
"pagePath": "pages/index/index",
"text": "赛事"
},
{
"pagePath": "pages/index/index",
"text": "我的"
}
]
},
"sitemapLocation": "sitemap.json",
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
},
"debug": true
}