-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
48 lines (48 loc) · 1.13 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
{
"pages": [
"pages/list/list",
"pages/calendar/calendar",
"pages/add/add",
"pages/me/me"
],
"window": {
"navigationBarBackgroundColor": "white",
"navigationBarTitleText": "记点琐事",
"navigationBarTextStyle": "black",
"backgroundColor": "#eeeeee",
"backgroundTextStyle": "light"
},
"tabBar": {
"color": "#a9a9a9",
"selectedColor": "#1f1f1f",
"backgroundColor": "#fefefe",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/list/list",
"text": "列表",
"iconPath": "image/列表.png",
"selectedIconPath": "image/列表_selected.png"
},
{
"pagePath": "pages/calendar/calendar",
"text": "日历",
"iconPath": "image/日历.png",
"selectedIconPath": "image/日历_selected.png"
},
{
"pagePath": "pages/me/me",
"text": "我",
"iconPath": "image/我.png",
"selectedIconPath": "image/我_selected.png"
}
]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
},
"debug": true
}