-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
43 lines (43 loc) · 999 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
42
43
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/setting/setting",
"pages/clock/clock",
"pages/shop/shop",
"pages/tomato/tomato"
],
"window": {
"backgroundTextStyle": "white",
"navigationBarBackgroundColor": "#1a1a1a",
"navigationBarTitleText": "尧式番茄钟",
"navigationBarTextStyle": "white"
},
"tabBar": {
"backgroundColor": "#353535",
"selectedColor": "#fff",
"color": "#aaa",
"list": [
{
"pagePath": "pages/index/index",
"text": "番茄",
"iconPath": "res/tomato.png",
"selectedIconPath": "res/tomato.png"
},
{
"pagePath": "pages/setting/setting",
"text": "自己",
"iconPath": "res/user.png",
"selectedIconPath": "res/user.png"
}
]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 20000,
"uploadFile": 20000,
"downloadFile": 10000
},
"debug": false,
"sitemapLocation": "sitemap.json"
}