-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathapp.json
54 lines (53 loc) · 1.39 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
{
"pages":[
"pages/index/index",
"pages/collection/collection",
"pages/add/add",
"pages/my/my",
"pages/setting/setting"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#000",
"navigationBarTitleText": "逗乐",
"navigationBarTextStyle":"white"
},
"tabBar": {
"color": "#ccc",
"selectedColor": "#35495e",
"borderStyle": "white",
"backgroundColor": "#f9f9f9",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "images/index.png",
"selectedIconPath": "images/index-actived.png"
},
{
"pagePath": "pages/collection/collection",
"iconPath": "images/collection.png",
"selectedIconPath": "images/collection-actived.png"
},
{
"pagePath": "pages/add/add",
"iconPath": "images/add.png",
"selectedIconPath": "images/add-actived.png"
},
{
"pagePath": "pages/my/my",
"iconPath": "images/my.png",
"selectedIconPath": "images/my-actived.png"
},
{
"pagePath": "pages/setting/setting",
"iconPath": "images/setting.png",
"selectedIconPath": "images/setting-actived.png"
}]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
},
"debug": true
}