-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
47 lines (46 loc) · 1.13 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
{
"pages":[
"pages/logs/logs",
"pages/index/index",
"pages/category/category",
"pages/cart/cart"
],
"window":{
"navigationBarTextStyle": "#ffffff",
"navigationBarTitleText": "零食商贩",
"navigationBarBackgroundColor": "#AB956D",
"backgroundColor": "#eeeeee",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#b7b7b7",
"selectedColor": "#AB956D",
"borderStyle": "#f5f5f5",
"backgroundColor": "#f5f5f5",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "image/12.png",
"selectedIconPath": "image/11.png",
"text": "主页"
}, {
"pagePath": "pages/category/category",
"iconPath": "image/22.png",
"selectedIconPath": "image/21.png",
"text": "分类"
},
{
"pagePath": "pages/cart/cart",
"iconPath": "image/32.png",
"selectedIconPath": "image/31.png",
"text": "购物车"
},
{
"pagePath": "pages/logs/logs",
"iconPath": "image/42.png",
"selectedIconPath": "image/41.png",
"text": "我的"
}
]
}
}