-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
49 lines (49 loc) · 1.25 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
{
"pages": [
"pages/home/index",
"pages/cart/index",
"pages/my/index",
"pages/login/index",
"pages/user/index",
"pages/good-list/index",
"pages/good-detail/index",
"pages/order/order-confirm/index",
"pages/address/address-list/index",
"pages/address/address/index",
"pages/order/index",
"pages/setting/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "阿福商城",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#6e6d6b",
"selectedColor": "#e64340",
"borderStyle": "black",
"backgroundColor": "#fff",
"box-shadow": "0 0 6px 0",
"list": [
{
"pagePath": "pages/home/index",
"text": "首页",
"iconPath": "images/nav/home-off.png",
"selectedIconPath": "images/nav/home-on.png"
},
{
"pagePath": "pages/cart/index",
"text": "购物车",
"iconPath": "images/nav/cart-off.png",
"selectedIconPath": "images/nav/cart-on.png"
},
{
"pagePath": "pages/my/index",
"text": "我的",
"iconPath": "images/nav/my-off.png",
"selectedIconPath": "images/nav/my-on.png"
}
]
}
}