-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
65 lines (63 loc) · 1.71 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
{
"pages": [
"pages/index/index",
"pages/shop/shop",
"pages/cart/cart",
"pages/my/my",
"pages/details/details",
"complements/template/template",
"pages/confirmorder/confirmorder",
"pages/order/order",
"pages/addressList/addressList",
"pages/address/address",
"pages/success/success",
"pages/canceled/canceled",
"pages/orderDetails/orderDetails",
"pages/myCoupons/myCoupons",
"pages/myLikes/myLikes",
"pages/saledRecords/saledRecords",
"pages/myEvaluations/myEvaluations",
"pages/receiptSuccess/receiptSuccess",
"pages/logs/logs"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Quick Shopping",
"navigationBarTextStyle": "black"
},
"tabBar": {
"selectedColor": "#fab706",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "/images/tabBar/index.png",
"selectedIconPath": "/images/tabBar/index_select.png"
},
{
"pagePath": "pages/shop/shop",
"text": "商店",
"iconPath": "/images/tabBar/shop.png",
"selectedIconPath": "/images/tabBar/shop_select.png"
},
{
"pagePath": "pages/cart/cart",
"text": "购物车",
"iconPath": "/images/tabBar/cart.png",
"selectedIconPath": "/images/tabBar/cart_select.png"
},
{
"pagePath": "pages/my/my",
"text": "我的",
"iconPath": "/images/tabBar/my.png",
"selectedIconPath": "/images/tabBar/my_select.png"
}
]
},
"permission":{
"scope.userLocation": {
"desc": "需要获取您的位置,来选择商店哦!"
}
}
}