-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
41 lines (41 loc) · 1.02 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
{
"pages": [
"pages/index/index",
"pages/goodsDetail/goodsDetail",
"pages/car/carDetail",
"pages/my/my"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#c81623",
"navigationBarTitleText": "京东购物",
"navigationBarTextStyle": "white",
"backgroundColor": "#c81623",
"enablePullDownRefresh": false
},
"tabBar": {
"color": "#666666",
"selectedColor": "#e33141",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/index.png",
"selectedIconPath": "images/index_selected.png",
"text": "首页"
},
{
"pagePath": "pages/car/carDetail",
"text": "购物车",
"iconPath": "images/car.png",
"selectedIconPath": "images/car_selected.png"
},
{
"pagePath": "pages/my/my",
"text": "我的",
"iconPath": "images/my.png",
"selectedIconPath": "images/my_selected.png"
}
]
}
}