-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
51 lines (51 loc) · 1.28 KB
/
app.json
File metadata and controls
51 lines (51 loc) · 1.28 KB
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
{
"pages": [
"pages/index/index",
"pages/cart/cart",
"pages/category/category",
"pages/me/me",
"pages/other/search/index",
"pages/other/goods/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#D83315",
"navigationBarTitleText": "mik商城",
"navigationBarTextStyle": "white"
},
"tabBar": {
"selectedColor": "#f22752",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "image/tabBar/home.png",
"selectedIconPath": "image/tabBar/home_active.png"
},
{
"pagePath": "pages/category/category",
"text": "分类",
"iconPath": "image/tabBar/classic.png",
"selectedIconPath": "image/tabBar/classic_active.png"
},
{
"pagePath": "pages/cart/cart",
"text": "购物车",
"iconPath": "image/tabBar/cart.png",
"selectedIconPath": "image/tabBar/cart_active.png"
},
{
"pagePath": "pages/me/me",
"text": "我",
"iconPath": "image/tabBar/me.png",
"selectedIconPath": "image/tabBar/me_active.png"
}
]
},
"permission":{
"scope.userLocation":{
"desc":"用于购买商品"
}
},
"sitemapLocation": "sitemap.json"
}