-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
48 lines (48 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
{
"pages": [
"pages/index/index",
"pages/index/container",
"pages/index/redirect",
"pages/bus/index",
"pages/canteen/index"
],
"tabBar": {
"custom": false,
"color": "@fontColor",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "@navBackgroundColor",
"list": [
{
"pagePath": "pages/canteen/index",
"iconPath": "@iconPathCanteen",
"selectedIconPath": "image/icon_canteen_HL.png",
"text": "饭堂"
},
{
"pagePath": "pages/index/container",
"iconPath": "@iconPathHome",
"selectedIconPath": "image/icon_home_HL.png",
"text": "手册"
},
{
"pagePath": "pages/bus/index",
"iconPath": "@iconPathBus",
"selectedIconPath": "image/icon_bus_HL.png",
"text": "巴士"
}
]
},
"window": {
"navigationStyle": "default",
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "@navBackgroundColor",
"navigationBarTextStyle": "@navTextStyle",
"navigationBarTitleText": "南科手册"
},
"darkmode": true,
"themeLocation": "theme.json",
"style": "v2",
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents"
}