-
Notifications
You must be signed in to change notification settings - Fork 21
/
app.json
executable file
·41 lines (41 loc) · 1.15 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/home/home",
"pages/category/category",
"pages/shopCar/shopCar",
"pages/group/group",
"pages/shopDetail/shopDetail",
"pages/me/me",
"pages/login/login",
"pages/Recommend/recommend"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#FF6261",
"navigationBarTextStyle":"white"
},
"tabBar": {
"selectedColor": "#FF6261",
"list": [{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "pages/resource/homeNormal.png",
"selectedIconPath": "pages/resource/homeHight.png"
},{
"pagePath": "pages/category/category",
"text": "分类",
"iconPath": "pages/resource/categoryNormal.png",
"selectedIconPath": "pages/resource/categoryHight.png"
},{
"pagePath": "pages/shopCar/shopCar",
"text": "购物车",
"iconPath": "pages/resource/shopcarNormal.png",
"selectedIconPath": "pages/resource/shopcarHight.png"
},{
"pagePath": "pages/me/me",
"text": "我的",
"iconPath": "pages/resource/meNoraml.png",
"selectedIconPath": "pages/resource/meHight.png"
}]
}
}