-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.json
More file actions
48 lines (48 loc) · 1.2 KB
/
app.json
File metadata and controls
48 lines (48 loc) · 1.2 KB
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
48
{
"pages": [
"pages/login/login",
"pages/my/my",
"pages/latest/latest",
"pages/search/search",
"pages/index/index",
"pages/logs/logs",
"pages/detail/detail",
"pages/setting/setting",
"pages/bookdetail/bookdetail",
"pages/bookList/bookList",
"pages/register/register",
"pages/scan/scan"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "阔地阅读",
"navigationBarTextStyle": "black",
"enablePullDownRefresh": "true"
},
"tabBar": {
"color": "#000000",
"selectedColor": "#5847f3",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/latest/latest",
"text": "最新",
"iconPath": "images/ic_hotest.png",
"selectedIconPath": "images/ic_hotest_on.png"
},
{
"pagePath": "pages/search/search",
"text": "书库",
"iconPath": "images/ic_tab_book.png",
"selectedIconPath": "images/ic_tab_book_on.png"
},
{
"pagePath": "pages/my/my",
"text": "我的",
"iconPath": "images/ic_user.png",
"selectedIconPath": "images/ic_user_on.png"
}
]
}
}