-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
49 lines (49 loc) · 1.29 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
48
49
{
"pages": [
"pages/index/index",
"pages/index/detail/detail",
"pages/logs/logs",
"pages/publish/index",
"pages/publish/publish",
"pages/publish/confirm/confirm",
"pages/user/user",
"pages/user/auth/auth",
"pages/user/account/account",
"pages/user/message/message",
"pages/user/message/detail",
"pages/user/mybook/mybook"
],
"window": {
"navigationBarBackgroundColor": "#000000",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "布克图书",
"backgroundColor": "#f5f5f5",
"backgroundTextStyle": "dark",
"onReachBottomDistance": 50
},
"tabBar": {
"color": "#9999999",
"selectedColor": "#89534a",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/index/home.png",
"selectedIconPath": "images/index/home-fill.png"
},
{
"pagePath": "pages/publish/index",
"text": "发布",
"iconPath": "images/index/publish.png",
"selectedIconPath": "images/index/publish-fill.png"
},
{
"pagePath": "pages/user/user",
"text": "我的",
"iconPath": "images/index/people.png",
"selectedIconPath": "images/index/people-fill.png"
}
]
}
}