-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
49 lines (49 loc) · 1.23 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
49
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/info/info",
"pages/admin/admin",
"pages/music/music",
"pages/setting/setting"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#ae88ba",
"navigationBarTitleText": "效率花园",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#dddddd",
"selectedColor": "#8e7ca9",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"text": "番茄钟",
"iconPath": "images/clock.png",
"selectedIconPath": "images/clock1.png"
},
{
"pagePath": "pages/setting/setting",
"text": "设置",
"iconPath": "images/wechat.png",
"selectedIconPath": "images/wechatHL.png"
},
{
"pagePath": "pages/logs/logs",
"text": "待办事项",
"iconPath": "images/dairies.png",
"selectedIconPath": "images/dairies1.png"
},
{
"pagePath": "pages/admin/admin",
"text": "我的",
"iconPath": "images/admin.png",
"selectedIconPath": "images/admin1.png"
}
]
},
"sitemapLocation": "sitemap.json"
}