-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
52 lines (52 loc) · 1.51 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
50
51
52
{
"pages":[
"pages/index/index",
"pages/details/details",
"pages/history/history",
"pages/account/account",
"pages/modify/modify",
"pages/add/add",
"pages/group/group",
"pages/addgroup/addgroup",
"pages/groupdetails/groupdetails",
"pages/accountsetting/accountsetting",
"pages/about/about",
"pages/settings/settings",
"pages/statistics/statistics",
"pages/statisticsdetails/statisticsdetails",
"pages/logs/logs"
],
"window":{
"backgroundColor": "@BgColor",
"backgroundTextStyle":"@BgTxtStyle",
"navigationBarBackgroundColor": "@navBgColor",
"navigationBarTitleText": "HoloTask",
"navigationBarTextStyle":"@navTxtStyle"
},
"tabBar":{
"color": "@tabFontColor",
"selectedColor": "#07c160",
"backgroundColor": "@tabBgColor",
"borderStyle": "@tabBorderStyle",
"list":[{
"pagePath": "pages/index/index",
"text": "主页",
"iconPath": "/source/icon/tabbar/home-o.png",
"selectedIconPath": "/source/icon/tabbar/home.png"
},{
"pagePath": "pages/history/history",
"text": "历史",
"iconPath": "/source/icon/tabbar/archive-o.png",
"selectedIconPath": "/source/icon/tabbar/archive.png"
},{
"pagePath": "pages/account/account",
"text": "账户",
"iconPath": "/source/icon/tabbar/person-o.png",
"selectedIconPath": "/source/icon/tabbar/person.png"
}]
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"darkmode": true,
"themeLocation": "theme.json"
}