-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
56 lines (56 loc) · 1.4 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
50
51
52
53
54
55
56
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/top250/top250",
"pages/me/me",
"pages/news/news"
],
"window": {
"navigationBarBackgroundColor": "#ff5777",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "电影详情",
"backgroundColor": "#fff",
"backgroundTextStyle": "light",
"enablePullDownRefresh": false,
"onReachBottomDistance":200
},
"tabBar": {
"color": "#9BABBA",
"selectedColor": "#495056",
"borderStyle": "white",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/tar-home.png",
"selectedIconPath": "images/tar-home-on.png",
"text": "即将上映"
},
{
"pagePath": "pages/news/news",
"iconPath": "images/tar-about.png",
"selectedIconPath": "images/tar-about-on.png",
"text": "新片榜"
},
{
"pagePath": "pages/top250/top250",
"iconPath": "images/tar-topic.png",
"selectedIconPath": "images/tar-topic-on.png",
"text": "Top250"
},
{
"pagePath": "pages/me/me",
"iconPath": "images/tar-person.png",
"selectedIconPath": "images/tar-person-on.png",
"text": "我的"
}
]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
}
}