-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
49 lines (49 loc) · 1.24 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/category/index",
"pages/cart/index",
"pages/me/index" ,
"pages/list/index",
"pages/detail/index"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor":"#fbf9fe",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle":"black",
"backgroundColor":"#fbf9fe"
},
"tabBar": {
"color":"#959394",
"selectedColor":"#e93b3d",
"borderStyle":"black",
"background":"#ffffff",
"list": [
{
"pagePath": "pages/home/index",
"iconPath":"image/home.png",
"selectedIconPath":"image/home-hl.png",
"text": "首页"
},
{
"pagePath": "pages/category/index",
"iconPath": "image/category.png",
"selectedIconPath": "image/category-hl.png",
"text": "分类"
},
{
"pagePath": "pages/cart/index",
"iconPath": "image/cart.png",
"selectedIconPath": "image/cart-hl.png",
"text": "购物车"
},
{
"pagePath": "pages/me/index",
"iconPath": "image/me.png",
"selectedIconPath": "image/me-hl.png",
"text": "我的"
}
]
}
}