-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.json
53 lines (53 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
53
{
"pages": [
"pages/index/index",
"pages/classify/classify",
"pages/groups/groups",
"pages/cart/cart",
"pages/mine/mine",
"pages/goodclo/goodclo",
"pages/summer/summer",
"pages/buy/buy"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#ff99ff",
"navigationBarTitleText": "美丽说",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#ff99ff",
"list": [
{
"text": "首页",
"pagePath": "pages/index/index",
"iconPath": "images/index.png",
"selectedIconPath": "images/index_active.png"
},
{
"text": "分类",
"pagePath": "pages/classify/classify",
"iconPath": "images/classify.png",
"selectedIconPath": "images/classify_active.png"
},
{
"text": "拼团",
"pagePath": "pages/groups/groups",
"iconPath": "images/groups.png",
"selectedIconPath": "images/groups_active.png"
},
{
"text": "购物车",
"pagePath": "pages/cart/cart",
"iconPath": "images/cart.png",
"selectedIconPath": "images/cart_active.png"
},
{
"text": "我的",
"pagePath": "pages/mine/mine",
"iconPath": "images/mine.png",
"selectedIconPath": "images/mine_active.png"
}
]
}
}