-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
44 lines (44 loc) · 1.15 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
{
"pages": [
"pages/index/index",
"pages/my/my",
"pages/search/search",
"pages/detail/detail"
],
"window": {
"navigationBarBackgroundColor":"#2b2e33",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "cnode",
"backgroundColor": "#fff",
"backgroundTextStyle": "#dark"
},
"tabBar": {
"color": "#74777e",
"selectedColor": "#f06000",
"borderStyle": "white",
"backgroundColor": "#fff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "image/wp.png",
"selectedIconPath": "image/wpselect.png",
"text": "首页"
}, {
"pagePath": "pages/search/search",
"iconPath": "image/ss.png",
"selectedIconPath": "image/ssselect.png",
"text": "搜索"
},{
"pagePath": "pages/my/my",
"iconPath": "image/my.png",
"selectedIconPath": "image/myselect.png",
"text": "我的"
}]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
},
"debug": true
}