-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
58 lines (58 loc) · 1.59 KB
/
app.json
File metadata and controls
58 lines (58 loc) · 1.59 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"pages": [
"pages/homePage/homePage",
"pages/minePage/minePage",
"pages/select_city/select_city",
"pages/orderList/orderList",
"pages/searchHotel/searchHotel",
"pages/hotelDetail/hotelDetail",
"pages/hotelFilter/hotelFilter",
"pages/bookHotel/bookHotel",
"pages/loginSelect/loginSelect",
"pages/userLogin/userLogin"
],
"window": {
"backgroundTextStyle": "light",
"backgroundColor": "#f66e26",
"navigationBarBackgroundColor": "#f66e26",
"navigationBarTitleText": "旅辰智慧酒店",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#333333",
"selectedColor": "#bf652e",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/homePage/homePage",
"text": "预订",
"iconPath": "res/images/ic_reserve.png",
"selectedIconPath": "res/images/ic_reserve_selected.png"
},
{
"pagePath": "pages/orderList/orderList",
"text": "订单",
"iconPath": "res/images/ic_order.png",
"selectedIconPath": "res/images/ic_order_selected.png"
},
{
"pagePath": "pages/minePage/minePage",
"text": "我的",
"iconPath": "res/images/ic_user.png",
"selectedIconPath": "res/images/ic_user_selected.png"
}
]
},
"sitemapLocation": "sitemap.json",
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
},
"requiredPrivateInfos": [
"getLocation",
"onLocationChange",
"startLocationUpdateBackground",
"chooseAddress"
]
}