forked from WYuanyang/wxapp-survey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
50 lines (48 loc) · 1.12 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
{
"pages":[
"pages/index/index",
"pages/main/index",
"pages/mine/index",
"pages/mySurvey/index",
"pages/participate/index",
"pages/result/index",
"pages/about/index",
"pages/edit/index"
],
"window":{
"navigationBarTextStyle": "black",
"navigationBarBackgroundColor": "#ffffff",
"backgroundColor": "white"
},
"tabBar": {
"backgroundColor":"#fff",
"color":"#2c2c2c",
"borderStyle":"white",
"selectedColor":"#5f1971",
"list": [
{
"pagePath": "pages/main/index",
"text": "首页",
"iconPath": "images/icon-main1.png",
"selectedIconPath": "images/icon-main2.png"
},
{
"pagePath": "pages/index/index",
"text": "新建",
"iconPath":"images/icon-add1.png",
"selectedIconPath":"images/icon-add2.png"
},
{
"pagePath": "pages/mine/index",
"text": "我的",
"iconPath":"images/icon-mine1.png",
"selectedIconPath":"images/icon-mine2.png"
}
]
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
},
"debug": false
}