-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
44 lines (41 loc) · 920 Bytes
/
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
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/map/map",
"pages/form/form"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "巡查管理",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#9E9E9E",
"backgroundColor": "white",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/map/map",
"text": "地图" ,
"selectedColor": "#17d399"
},
{
"pagePath": "pages/form/form",
"text": "提交" ,
"selectedColor": "#17d399"
},
{
"pagePath": "pages/logs/logs",
"text": "查看" ,
"selectedColor": "#17d399"
}
]
},
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
}
}