-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
42 lines (41 loc) · 1005 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
{
"pages": [
"pages/index/index",
"pages/result/index",
"pages/save/index",
"pages/about/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#707070",
"selectedColor": "#d81e06",
"list": [
{
"iconPath": "assets/icons/1-1.png",
"selectedIconPath": "assets/icons/1-2.png",
"pagePath": "pages/index/index",
"text": "识别"
},
{
"iconPath": "assets/icons/2-1.png",
"selectedIconPath": "assets/icons/2-2.png",
"pagePath": "pages/save/index",
"text": "图片"
},
{
"iconPath": "assets/icons/4-1.png",
"selectedIconPath": "assets/icons/4-2.png",
"pagePath": "pages/about/index",
"text": "源码"
}
]
},
"darkmode": true,
"style": "v2",
"sitemapLocation": "sitemap.json"
}