-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
55 lines (55 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
53
54
55
{
"pages": [
"pages/index/index",
"pages/search/index",
"pages/spec-detail/index",
"pages/camera/index",
"pages/preview/index",
"pages/save-image/index",
"pages/album/index",
"pages/album-detail/index",
"pages/login/index",
"pages/cutout/index",
"pages/admin/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black",
"navigationStyle": "custom",
"pageOrientation": "portrait"
},
"tabBar": {
"custom": false,
"color": "#B9B9B9",
"selectedColor": "#4E47FD",
"backgroundColor": "#ffffff",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "assets/icon/index-grey.png",
"selectedIconPath": "assets/icon/index-click.png"
},
{
"pagePath": "pages/album/index",
"text": "相册",
"iconPath": "assets/icon/photo-grey.png",
"selectedIconPath": "assets/icon/photo-click.png"
}
]
},
"usingComponents": {
"header": "./components/header/header",
"van-button": "@vant/weapp/button/index",
"van-tab": "@vant/weapp/tab/index",
"van-tabs": "@vant/weapp/tabs/index",
"van-search": "@vant/weapp/search/index",
"van-icon": "@vant/weapp/icon/index",
"van-swipe-cell": "@vant/weapp/swipe-cell/index",
"van-dialog": "@vant/weapp/dialog/index"
},
"sitemapLocation": "sitemap.json"
}