-
Notifications
You must be signed in to change notification settings - Fork 12
/
app.json
36 lines (36 loc) · 872 Bytes
/
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
{
"pages":[
"pages/find/find",
"pages/mine/mine"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "微信小程序",
"navigationBarTextStyle":"black"
},
"tabBar": {
"color": "#dddddd",
"selectedColor": "#F44336",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/find/find",
"iconPath": "image/price_normal.png",
"selectedIconPath": "image/price_select.png",
"text": "发现"
}, {
"pagePath": "pages/mine/mine",
"iconPath": "image/mine_normal.png",
"selectedIconPath": "image/mine_select.png",
"text": "我的"
}]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
},
"debug": true
}