-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathapp.json
50 lines (50 loc) · 1.28 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
{
"pages": [
"pages/in_theaters/in_theaters",
"pages/coming_soon/coming_soon",
"pages/topfilm/topfilm",
"pages/profiles/profiles",
"pages/detail/detail"
],
"window": {
"navigationBarBackgroundColor": "#35495e",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "豆瓣电影",
"backgroundColor": "#fff",
"backgroundTextStyle": "dark",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#ccc",
"selectedColor": "#35495e",
"borderStyle": "white",
"backgroundColor": "#f9f9f9",
"list": [
{
"text": "正在热映",
"pagePath": "pages/in_theaters/in_theaters",
"iconPath": "images/board.png",
"selectedIconPath": "images/board-actived.png"
},
{
"text": "即将上映",
"pagePath": "pages/coming_soon/coming_soon",
"iconPath": "images/home.png",
"selectedIconPath": "images/home-actived.png"
},
{
"text": "我的",
"pagePath": "pages/profiles/profiles",
"iconPath": "images/profile.png",
"selectedIconPath": "images/profile-actived.png"
}
]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
},
"debug": true
}