-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
108 lines (108 loc) · 3.88 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"pages": [
"pages/index/index",
"pages/register/register",
"pages/user/info/info",
"pages/user/infoEdit/infoEdit",
"pages/user/index/index",
"pages/promotion/promotion",
"pages/notice/list/list",
"pages/notice/detail/detail",
"pages/user/addressList/addressList",
"pages/user/addressOperation/addressOperation",
"pages/cart/index/index",
"pages/order/list/list",
"pages/order/add/add",
"pages/order/review/review",
"pages/order/detail/detail",
"pages/order/success/success",
"pages/goods/list/list",
"pages/goods/category/category",
"pages/goods/detail/detail"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"usingComponents": {
"van-button": "@vant/weapp/button/index",
"van-search": "@vant/weapp/search/index",
"van-empty": "@vant/weapp/empty/index",
"van-grid": "@vant/weapp/grid/index",
"van-grid-item": "@vant/weapp/grid-item/index",
"van-area": "@vant/weapp/area/index",
"van-tree-select": "@vant/weapp/tree-select/index",
"van-switch": "@vant/weapp/switch/index",
"van-row": "@vant/weapp/row/index",
"van-col": "@vant/weapp/col/index",
"van-uploader": "@vant/weapp/uploader/index",
"van-tag": "@vant/weapp/tag/index",
"van-dialog": "@vant/weapp/dialog/index",
"van-notice-bar": "@vant/weapp/notice-bar/index",
"van-radio": "@vant/weapp/radio/index",
"van-radio-group": "@vant/weapp/radio-group/index",
"van-submit-bar": "@vant/weapp/submit-bar/index",
"van-card": "@vant/weapp/card/index",
"van-nav-bar": "@vant/weapp/nav-bar/index",
"van-checkbox": "@vant/weapp/checkbox/index",
"van-checkbox-group": "@vant/weapp/checkbox-group/index",
"van-cell-group": "@vant/weapp/cell-group/index",
"van-cell": "@vant/weapp/cell/index",
"van-rate": "@vant/weapp/rate/index",
"van-field": "@vant/weapp/field/index",
"van-popup": "@vant/weapp/popup/index",
"van-picker": "@vant/weapp/picker/index",
"van-stepper": "@vant/weapp/stepper/index",
"van-dropdown-menu": "@vant/weapp/dropdown-menu/index",
"van-dropdown-item": "@vant/weapp/dropdown-item/index",
"van-goods-action": "@vant/weapp/goods-action/index",
"van-goods-action-icon": "@vant/weapp/goods-action-icon/index",
"van-goods-action-button": "@vant/weapp/goods-action-button/index",
"van-icon": "@vant/weapp/icon/index",
"van-sticky": "@vant/weapp/sticky/index",
"van-divider": "@vant/weapp/divider/index",
"van-panel": "@vant/weapp/panel/index",
"van-tab": "@vant/weapp/tab/index",
"van-tabs": "@vant/weapp/tabs/index",
"van-tabbar": "@vant/weapp/tabbar/index",
"van-tabbar-item": "@vant/weapp/tabbar-item/index",
"van-loading": "@vant/weapp/loading/index",
"van-image": "@vant/weapp/image/index"
},
"tabBar": {
"custom": true,
"color": "#999faa",
"selectedColor": "#55b5c1",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/icon-tabbar-home.png",
"selectedIconPath": "images/icon-tabbar-home-active.png",
"text": "首页"
},
{
"pagePath": "pages/goods/list/list",
"iconPath": "images/icon-tabbar-bag.png",
"selectedIconPath": "images/icon-tabbar-bag-active.png",
"text": "商品"
},
{
"pagePath": "pages/cart/index/index",
"iconPath": "images/icon-tabbar-cart.png",
"selectedIconPath": "images/icon-tabbar-cart-active.png",
"text": "购物车"
},
{
"pagePath": "pages/user/index/index",
"iconPath": "images/icon-tabbar-user.png",
"selectedIconPath": "images/icon-tabbar-user-active.png",
"text": "我的"
}
]
},
"sitemapLocation": "sitemap.json"
}