-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
executable file
·53 lines (51 loc) · 1.22 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
{
"pages": [
"pages/index/index",
"pages/detail/detail",
"pages/logs/logs",
"pages/page/page",
"pages/about/about",
"pages/list/list",
"pages/topic/topic",
"pages/readlog/readlog",
"pages/hot/hot"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#296FD0",
"navigationBarTitleText": "并发编程网",
"navigationBarTextStyle": "#fff"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#005B8B",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/tar-home.png",
"selectedIconPath": "images/tar-home-on.png",
"text": "首页"
},
{
"pagePath": "pages/hot/hot",
"iconPath": "images/hot.png",
"selectedIconPath": "images/hot-on.png",
"text": "热点"
},
{
"pagePath": "pages/about/about",
"iconPath": "images/tar-person.png",
"selectedIconPath": "images/tar-person-on.png",
"text": "关于"
}
]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
}
}