-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathapp.json
executable file
·47 lines (47 loc) · 1.28 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
{
"pages":[
"pages/index/index",
"pages/components/classify/classify",
"pages/components/person/person",
"pages/components/games/games",
"pages/components/weather/weather",
"pages/components/choosecity/choosecity"
],
"window":{
"backgroundColor":"#f4f4f4",
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "orange",
"navigationBarTitleText": "大好商城",
"navigationBarTextStyle":"white"
},
"tabBar": {
"color": "#dddddd",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "image/wechat.png",
"selectedIconPath": "image/wechatHL.png",
"text": "首页"
}, {
"pagePath": "pages/components/classify/classify",
"iconPath": "image/wechat.png",
"selectedIconPath": "image/wechatHL.png",
"text": "分类"
}, {
"pagePath": "pages/components/person/person",
"iconPath": "image/wechat.png",
"selectedIconPath": "image/wechatHL.png",
"text": "我的"
}
]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
},
"debug": true
}