-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
44 lines (44 loc) · 1.09 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
{
"pages": [
"pages/scan/index",
"pages/push/push",
"pages/page/page",
"pages/page/newbutton",
"pages/setting/setting",
"pages/index/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Quicler",
"navigationBarTextStyle": "black",
"pageOrientation": "portrait"
},
"tabBar": {
"selectedColor": "#1296db",
"color": "#8a8a8a",
"list": [
{
"pagePath": "pages/scan/index",
"text": "面板",
"iconPath": "assets/ic_panel.png",
"selectedIconPath": "assets/ic_panel_select.png"
},
{
"pagePath": "pages/push/push",
"text": "自定义",
"iconPath": "assets/ic_custom.png",
"selectedIconPath": "assets/ic_custom_select.png"
},
{
"pagePath": "pages/setting/setting",
"text": "配置",
"iconPath": "assets/ic_setting.png",
"selectedIconPath": "assets/ic_setting_select.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"resizable": false
}