-
Notifications
You must be signed in to change notification settings - Fork 12
/
app.json
49 lines (48 loc) · 1.23 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
{
"pages": [
"pages/home/home",
"pages/deviceList/deviceList",
"pages/alarm/alarm",
"pages/index/index",
"pages/deviceInfo/deviceInfo",
"pages/addDevice/addDevice",
"pages/map/map",
"pages/work/work",
"pages/userList/userList",
"pages/deviceSetting/deviceSetting",
"pages/logs/logs",
"pages/login/login"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#166ead",
"navigationBarTitleText": "Weixin",
"navigationBarTextStyle": "white"
},
"tabBar": {
"selectedColor": "#196ead",
"list": [
{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "images/icon_1_bom.png",
"selectedIconPath": "images/icon_1_top.png"
},
{
"pagePath": "pages/deviceList/deviceList",
"text": "设备",
"iconPath": "images/icon_3_bom.png",
"selectedIconPath": "images/icon_3_top.png"
},
{
"pagePath": "pages/alarm/alarm",
"text": "告警",
"iconPath": "images/icon_4_bom.png",
"selectedIconPath": "images/icon_4_top.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents"
}