-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
executable file
·41 lines (39 loc) · 1009 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
37
38
39
40
41
{
"pages": [
"page/main/index",
"page/main/pages/template-message/template-message",
"page/my/index",
"page/my/pages/template-message/template-message",
"page/my/pages/update/update"
],
"window": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "演示",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "page/main/index",
"iconPath": "image/icon_main.png",
"selectedIconPath": "image/icon_main_HL.png",
"text": "首页"
}, {
"pagePath": "page/my/index",
"iconPath": "image/icon_my.png",
"selectedIconPath": "image/icon_my_HL.png",
"text": "我的"
}]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
},
"debug": false
}