-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
41 lines (41 loc) · 862 Bytes
/
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
{
"pages": [
"pages/index/index",
"pages/recom/recom",
"pages/search/search"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#d43c33",
"navigationBarTitleText": "网易云音乐",
"navigationBarTextStyle": "white"
},
"tabBar": {
"position": "top",
"color": "#aaa",
"selectedColor": "#d43c33",
"borderStyle": "#333",
"backgroundColor": "#fff",
"list": [
{
"pagePath": "pages/index/index",
"text": "推荐音乐"
},
{
"pagePath": "pages/recom/recom",
"text": "热歌榜"
},
{
"pagePath": "pages/search/search",
"text": "搜索"
}
]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
},
"debug": true
}