-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathapp.json
42 lines (42 loc) · 1.09 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
{
"pages": [
"pages/booktravel/index",
"pages/logs/logs",
"pages/libraryshelves/index",
"pages/mybooks/index",
"pages/booktravel/bookdetails/index",
"pages/booktravel/error/index",
"pages/libraryshelves/borrowBook/index",
"pages/ownerPage/index",
"testPages/test"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#3A393F",
"navigationBarTitleText": "流动图书馆",
"navigationBarTextStyle": "white",
"backgroundColor": "#FAFAFA"
},
"tabBar": {
"list": [
{
"pagePath": "pages/booktravel/index",
"text": "图书漂流",
"iconPath": "images/general.png",
"selectedIconPath": "images/click.png"
},
{
"pagePath": "pages/libraryshelves/index",
"text": "借阅书架",
"iconPath": "images/general.png",
"selectedIconPath": "images/click.png"
},
{
"pagePath": "pages/mybooks/index",
"text": "我的图书",
"iconPath": "images/general.png",
"selectedIconPath": "images/click.png"
}
]
}
}