forked from aidenZou/SmallApp
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
executable file
·51 lines (51 loc) · 1.32 KB
/
app.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.32 KB
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
51
{
"pages":[
"pages/index/index",
"pages/list/index",
"pages/component/index",
"pages/i/index",
"pages/logs/logs"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "Small App",
"navigationBarBackgroundColor": "#0767c8",
"backgroundColor": "#fbf9fe",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#dddddd",
"selectedColor": "#3cc51f",
"borderStyle": "white",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "image/icon_component.png",
"selectedIconPath": "image/icon_component_HL.png",
"text": "首页"
}, {
"pagePath": "pages/list/index",
"iconPath": "image/icon_API.png",
"selectedIconPath": "image/icon_API_HL.png",
"text": "分类"
}, {
"pagePath": "pages/component/index",
"iconPath": "image/icon_API.png",
"selectedIconPath": "image/icon_API_HL.png",
"text": "购物车"
}, {
"pagePath": "pages/i/index",
"iconPath": "image/icon_API.png",
"selectedIconPath": "image/icon_API_HL.png",
"text": "我的"
}]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
},
"debug": true
}