-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
56 lines (56 loc) · 1.41 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
{
"pages":[
"pages/index/index",
"pages/category/index",
"pages/cart/index",
"pages/user/index",
"pages/login/index",
"pages/order/index",
"pages/orderCreate/index",
"pages/orderDetail/index",
"pages/goods/index",
"pages/goodsDetail/index",
"pages/address/index",
"pages/addressDetail/index"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "毫米商城",
"navigationBarTextStyle":"black"
},
"tabBar": {
"selectedColor": "#1989fa",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/icons/index.png",
"selectedIconPath": "images/icons/index_o.png"
},
{
"pagePath": "pages/category/index",
"text": "分类",
"iconPath": "images/icons/category.png",
"selectedIconPath": "images/icons/category_o.png"
},
{
"pagePath": "pages/cart/index",
"text": "购物车",
"iconPath": "images/icons/cart.png",
"selectedIconPath": "images/icons/cart_o.png"
},
{
"pagePath": "pages/user/index",
"text": "我的",
"iconPath": "images/icons/user.png",
"selectedIconPath": "images/icons/user_o.png"
}
]
},
"useExtendedLib": {
"weui": true
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}