-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
45 lines (45 loc) · 1.16 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
{
"pages": [
"pages/personal/personal",
"pages/library/library",
"pages/community/community",
"pages/signup/signup",
"pages/bookDetail/bookDetail",
"pages/sortDetail/sortDetail",
"pages/personDetail/personDetail",
"pages/news/news",
"pages/search/search"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#bfbfbf",
"selectedColor": "#2c3e50",
"backgroundColor": "#fff",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/personal/personal",
"text": "个人中心",
"iconPath": "images/myself.png",
"selectedIconPath": "images/myself_h.png"
},
{
"pagePath": "pages/library/library",
"text": "图书馆",
"iconPath": "images/library.png",
"selectedIconPath": "images/library_h.png"
},
{
"pagePath": "pages/community/community",
"text": "社区",
"iconPath": "images/community.png",
"selectedIconPath": "images/community_h.png"
}
]
}
}