-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
53 lines (51 loc) · 1.26 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
{
"pages":[
"pages/index/index",
"pages/category/index",
"pages/goods_list/index",
"pages/goods_detail/index",
"pages/cart/index",
"pages/user/index",
"pages/auth/index"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#4169E1",
"navigationBarTitleText": "David's Shop",
"navigationBarTextStyle":"white"
},
"tabBar": {
"color": "#999",
"selectedColor": "#ff0000",
"backgroundColor": "#fafafa",
"position": "bottom",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"text": "Home",
"iconPath": "icons/home0.png",
"selectedIconPath": "icons/home1.png"
},
{
"pagePath": "pages/category/index",
"text": "Category",
"iconPath": "icons/category0.png",
"selectedIconPath": "icons/category1.png"
},
{
"pagePath": "pages/cart/index",
"text": "Cart",
"iconPath": "icons/cart0.png",
"selectedIconPath": "icons/cart1.png"
},
{
"pagePath": "pages/user/index",
"text": "User",
"iconPath": "icons/my0.png",
"selectedIconPath": "icons/my1.png"
}
]
},
"sitemapLocation": "sitemap.json"
}