-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
55 lines (55 loc) · 1.45 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
54
55
{
"pages": [
"pages/wxLogin/wxLogin",
"pages/index/index",
"pages/send/send",
"pages/logs/logs",
"pages/maps/maps",
"pages/delete/delete",
"pages/authority/authority",
"pages/employeeManage/employeeManage"
],
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
},
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "MyDepot",
"navigationBarTextStyle": "black"
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"tabBar": {
"selectedColor": "#09BB07",
"list": [
{
"pagePath": "pages/send/send",
"text": "扫码入库",
"iconPath": "images/icons/QRscan.png",
"selectedIconPath": "images/icons/SQscanselected.png"
},
{
"pagePath": "pages/delete/delete",
"text": "扫码出库",
"iconPath": "images/icons/QRscan.png",
"selectedIconPath": "images/icons/SQscanselected.png"
},
{
"pagePath": "pages/maps/maps",
"text": "位置",
"iconPath": "images/icons/dairy.png",
"selectedIconPath": "images/icons/dairyselected.png"
},
{
"pagePath": "pages/index/index",
"text": "用户",
"iconPath": "images/icons/user.png",
"selectedIconPath": "images/icons/userselected.png"
}
]
},
"usingComponents": {}
}