-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
52 lines (52 loc) · 1.32 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
{
"pages": [
"pages/index/index",
"pages/detail/detail",
"pages/message/message",
"pages/cart/cart",
"pages/me/me",
"pages/search/search",
"pages/pay/pay",
"pages/order/order",
"pages/login/login"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"tabBar": {
"color": "#000",
"selectedColor": "#FF9800",
"backgroundColor":"#fff",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "icons/tabBar/index.png",
"selectedIconPath": "icons/tabBar/index_selected.png"
},
{
"pagePath": "pages/message/message",
"text": "消息",
"iconPath": "icons/tabBar/message.png",
"selectedIconPath": "icons/tabBar/message_selected.png"
},
{
"pagePath": "pages/cart/cart",
"text": "购物车",
"iconPath": "icons/tabBar/cart.png",
"selectedIconPath": "icons/tabBar/cart_selected.png"
},
{
"pagePath": "pages/me/me",
"text": "我",
"iconPath": "icons/tabBar/me.png",
"selectedIconPath": "icons/tabBar/me_selected.png"
}
]
}
}