-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
52 lines (50 loc) · 1.17 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/map/map",
"pages/own/own",
"pages/picker/picker",
"pages/manage/manage",
"pages/article/article"
],
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于开始地图选点"
}
},
"window":{
"navigationBarTitleText": "足迹古树",
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle":"black",
"navigationStyle": "custom",
"enablePullDownRefresh": false
},
"style": "v2",
"tabBar": {
"color": "#000",
"selectedColor": "#17ba17",
"backgroundColor": "rgba(255, 255, 255, 0.565)",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "./images/home.png",
"selectedIconPath": "./images/home-s.png",
"text": "首页"
},
{
"pagePath": "pages/map/map",
"iconPath": "./images/paw.png",
"selectedIconPath": "./images/paw-s.png",
"text": "足迹"
},
{
"pagePath": "pages/own/own",
"iconPath": "./images/user.png",
"selectedIconPath": "./images/user-s.png",
"text": "我的"
}
]
},
"sitemapLocation": "sitemap.json"
}