-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
67 lines (67 loc) · 2.3 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"pages": [
"pages/index/index",
"pages/login/login",
"pages/bindphone/bindphone",
"pages/scanpay/scanpay",
"pages/usercenter/usercenter",
"pages/search/search",
"pages/messagelist/messagelist",
"pages/merchantcate/merchantcate",
"pages/merchantdetail/merchantdetail",
"pages/userinfo/userinfo",
"pages/bill/bill",
"pages/orderdetail/orderdetail",
"pages/ticketlist/ticketlist",
"pages/redpacketlist/redpacketlist",
"pages/pay/pay",
"pages/choosevoucher/choosevoucher",
"pages/paysuccess/paysuccess",
"pages/rechargesuccess/rechargesuccess",
"pages/confirmphone/confirmphone",
"pages/rebindphone/rebindphone",
"pages/merchantmap/merchantmap",
"pages/verification/verification",
"pages/givescore/givescore",
"pages/merchantscore/merchantscore",
"pages/usercomment/usercomment",
"pages/membernotes/membernotes",
"pages/chooseredpacket/chooseredpacket"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#999",
"selectedColor": "#FF0000",
"backgroundColor": "#FAFAFA",
"borderStyle": "black",
"list": [{
"pagePath": "pages/scanpay/scanpay",
"text": "扫码付款",
"iconPath": "assets/images/scan_disable.png",
"selectedIconPath": "assets/images/scan_able.png"
},
{
"pagePath": "pages/index/index",
"text": "乐享优惠",
"iconPath": "assets/images/discount_disable.png",
"selectedIconPath": "assets/images/discount_able.png"
},
{
"pagePath": "pages/usercenter/usercenter",
"text": "个人中心",
"iconPath": "assets/images/user_disable.png",
"selectedIconPath": "assets/images/user_able.png"
}
]
},
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
}
}