-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathapp.json
More file actions
32 lines (32 loc) · 775 Bytes
/
Copy pathapp.json
File metadata and controls
32 lines (32 loc) · 775 Bytes
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
{
"pages": [
"pages/index/index",
"pages/list/list",
"pages/detail/detail",
"pages/shopcart/shopcart"
],
"window": {
"navigationBarBackgroundColor": "#e69e9e",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "小程序",
"backgroundColor": "#eeeeee",
"backgroundTextStyle": "light",
"enablePullDownRefresh": false
},
"tabBar": {
"list": [
{
"pagePath": "pages/list/list",
"text": "推荐",
"iconPath": "/img/icon/recommend.png",
"selectedIconPath": "/img/icon/recommend_on.png"
},
{
"pagePath": "pages/shopcart/shopcart",
"text": "购物车",
"iconPath": "/img/icon/shopcart.png",
"selectedIconPath": "/img/icon/shopcart_on.png"
}
]
}
}