-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
47 lines (47 loc) · 1.22 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/index/index",
"pages/logs/logs",
"pages/community/community",
"pages/me/me",
"pages/service/service"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#f3f3f3",
"navigationBarTitleText": "e充电",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#CBCBCB",
"selectedColor": "#338867",
"backgroundColor": "#fff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"text": "充电",
"iconPath": "images/icon-charger.png",
"selectedIconPath": "images/icon-charger-active.png"
},
{
"pagePath": "pages/community/community",
"text": "社区",
"iconPath": "images/icon-community.png",
"selectedIconPath": "images/icon-community-active.png"
},
{
"pagePath": "pages/service/service",
"text": "服务",
"iconPath": "images/icon-service.png",
"selectedIconPath": "images/icon-service-active.png"
},
{
"pagePath": "pages/me/me",
"text": "我的",
"iconPath": "images/icon-me.png",
"selectedIconPath": "images/icon-me-active.png"
}
]
}
}