-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
51 lines (51 loc) · 1.42 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
{
"pages":[
"pages/splash/splash",
"pages/index/index",
"pages/logs/logs",
"pages/piclib/piclib",
"pages/piclib-detail/piclib-detail",
"pages/piclist/piclist",
"pages/picshow/picshow",
"pages/about/about",
"pages/map/map"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#eb4f38",
"navigationBarTitleText": "摄影家园",
"navigationBarTextStyle":"white"
},
"tabBar": {
"color": "#fff",
"selectedColor": "#eb4f38",
"borderStyle":"white",
"backgroundColor":"#000",
"list": [{
"selectedIconPath": "resource/images/icon-home-active.png",
"iconPath": "resource/images/icon-home.png",
"pagePath": "pages/index/index",
"text": "首页"
}, {
"selectedIconPath": "resource/images/icon-pic-active.png",
"iconPath": "resource/images/icon-pic.png",
"pagePath": "pages/piclist/piclist",
"text": "图库"
}, {
"selectedIconPath": "resource/images/icon-logs-active.png",
"iconPath": "resource/images/icon-logs.png",
"pagePath": "pages/logs/logs",
"text": "日志"
}, {
"selectedIconPath": "resource/images/icon-about-active.png",
"iconPath": "resource/images/icon-about.png",
"pagePath": "pages/about/about",
"text": "关注"
}]
},
"networkTimeout": {
"request": 3000,
"downloadFile": 3000
},
"debug": true
}