-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathapp.json
52 lines (52 loc) · 1.34 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
{
"pages": [
"pages/index/index",
"pages/detail/detail",
"pages/cart/cart",
"pages/account/account",
"pages/address/address",
"pages/phoneValidate/phoneValidate",
"pages/questions/questions",
"pages/classify/classify",
"pages/classifyDetail/classifyDetail",
"pages/list/list"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "宋鹏商城",
"navigationBarTextStyle": "black"
},
"tabBar": {
"backgroundColor": "#f5f5f5",
"borderStyle": "white",
"color": "#9d9d9d",
"selectedColor": "#202020",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/index.png",
"selectedIconPath": "images/indexHL.png"
},
{
"pagePath": "pages/classify/classify",
"text": "分类",
"iconPath": "images/nav-list.png",
"selectedIconPath": "images/nav-listHL.png"
},
{
"pagePath": "pages/cart/cart",
"text": "购物车",
"iconPath": "images/cart.png",
"selectedIconPath": "images/cartHL.png"
},
{
"pagePath": "pages/account/account",
"text": "我的",
"iconPath": "images/account.png",
"selectedIconPath": "images/accountHL.png"
}
]
}
}