This repository has been archived by the owner on Sep 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 625
/
app.json
58 lines (58 loc) · 1.68 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
{
"pages": [
"pages/start/index",
"pages/index/index",
"pages/classify/index",
"pages/cart/index",
"pages/address/list/index",
"pages/address/add/index",
"pages/address/edit/index",
"pages/address/confirm/index",
"pages/order/list/index",
"pages/order/confirm/index",
"pages/order/detail/index",
"pages/goods/list/index",
"pages/goods/detail/index",
"pages/help/list/index",
"pages/help/detail/index",
"pages/search/index",
"pages/about/index",
"pages/login/index",
"pages/user/index"
],
"window": {
"navigationBarBackgroundColor": "#479de6",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "小商城",
"backgroundColor": "#f8f8f8",
"backgroundTextStyle": "dark"
},
"tabBar": {
"color": "#999999",
"selectedColor": "#479de6",
"borderStyle": "white",
"backgroundColor": "#fff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "assets/images/iconfont-home.png",
"selectedIconPath": "assets/images/iconfont-home-active.png",
"text": "主页"
}, {
"pagePath": "pages/classify/index",
"iconPath": "assets/images/iconfont-list.png",
"selectedIconPath": "assets/images/iconfont-list-active.png",
"text": "分类"
}, {
"pagePath": "pages/cart/index",
"iconPath": "assets/images/iconfont-cart.png",
"selectedIconPath": "assets/images/iconfont-cart-active.png",
"text": "购物车"
}, {
"pagePath": "pages/user/index",
"iconPath": "assets/images/iconfont-user.png",
"selectedIconPath": "assets/images/iconfont-user-active.png",
"text": "我的"
}]
},
"debug": false
}