-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
50 lines (50 loc) · 1.21 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
{
"pages": [
"view/index/index",
"view/cart/index",
"view/cart/detail",
"view/my/index",
"view/category/index",
"view/product/index",
"view/qrcode/index",
"view/order/index",
"view/order/check",
"view/order/result",
"view/delivery/index",
"view/delivery/detail",
"view/favor/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTitleText": "微信商城",
"navigationBarTextStyle": "black",
"backgroundColor": "#e8e8ed"
},
"tabBar": {
"color": "#666666",
"selectedColor": "#c81623",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "view/index/index",
"iconPath": "/image/home.png",
"selectedIconPath": "/image/home_active.png",
"text": "首页"
},
{
"pagePath": "view/cart/index",
"iconPath": "/image/cart.png",
"selectedIconPath": "/image/cart_active.png",
"text": "购物车"
},
{
"pagePath": "view/my/index",
"iconPath": "/image/my.png",
"selectedIconPath": "/image/my_active.png",
"text": "我的"
}
]
}
}