forked from bayetech/wechat_mall_applet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
43 lines (43 loc) · 1.07 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
{
"pages":[
"pages/index/index",
"pages/show_product/show_product",
"pages/address/address",
"pages/cart/cart",
"pages/cart/coupon",
"pages/mine/mine",
"pages/category/category"
],
"window":{
"backgroundColor": "#f2f2f2",
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "巴爷供销社",
"navigationBarTextStyle":"black"
},
"tabBar": {
"color": "black",
"selectedColor": "#BF8600",
"borderStyle": "white",
"backgroundColor": "white",
"position": "top",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "images/ba.png",
"selectedIconPath": "images/ba_active.png",
"text": "首页"
},
{
"pagePath": "pages/category/category",
"iconPath": "images/cart.png",
"selectedIconPath": "images/cart_active.png",
"text": "分类"
},
{
"pagePath": "pages/cart/cart",
"iconPath": "images/cart.png",
"selectedIconPath": "images/cart_active.png",
"text": "购物车"
}]
}
}