-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
47 lines (47 loc) · 1.13 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
{
"pages":[
"pages/index/index",
"pages/mine/mine",
"pages/category/category",
"pages/logs/logs"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle":"black"
},
"tabBar": {
"color": "#6e6d6b",
"selectedColor": "#e64340",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "img/nav/home-off.png",
"selectedIconPath": "img/nav/home-on.png"
},
{
"pagePath": "pages/category/category",
"text": "分类",
"iconPath": "img/nav/ic_catefory_normal.png",
"selectedIconPath": "img/nav/ic_catefory_pressed.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "img/nav/my-off.png",
"selectedIconPath": "img/nav/my-on.png"
}
]
},
"permission": {
"scope.userLocation": {
"desc": "展示个人位置信息"
}
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}