-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
56 lines (56 loc) · 1.73 KB
/
app.json
File metadata and controls
56 lines (56 loc) · 1.73 KB
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
56
{
"pages": [
"pages/index/index",
"pages/class/class",
"pages/cart/cart",
"pages/personal/personal"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Weixin",
"navigationBarTextStyle": "black"
},
"sitemapLocation": "sitemap.json",
"tabBar": {
"color": "#BBBBBB",
"selectedColor": "#07c160",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "static/img/index.png",
"selectedIconPath": "static/img/indexActive.png"
},
{
"pagePath": "pages/class/class",
"text": "分类",
"iconPath": "static/img/class.png",
"selectedIconPath": "static/img/classActive.png"
},
{
"pagePath": "pages/cart/cart",
"text": "购物车",
"iconPath": "static/img/cart.png",
"selectedIconPath": "static/img/cartActive.png"
},
{
"pagePath": "pages/personal/personal",
"text": "我的",
"iconPath": "static/img/personal.png",
"selectedIconPath": "static/img/personalActive.png"
}
]
},
"usingComponents": {
"base-header": "baseComponents/base-header/base-header",
"base-btn": "baseComponents/base-btn/base-btn",
"base-no-list": "baseComponents/base-no-list/base-no-list",
"base-search": "baseComponents/base-search/base-search",
"base-pre-img": "baseComponents/base-pre-img/base-pre-img",
"base-swiper": "baseComponents/base-swiper/base-swiper",
"base-class-swiper": "baseComponents/base-class-swiper/base-class-swiper",
"base-notice-list": "baseComponents/base-notice-list/base-notice-list",
"van-icon": "@vant/weapp/icon/index"
}
}