-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpages.json
More file actions
82 lines (82 loc) · 1.81 KB
/
pages.json
File metadata and controls
82 lines (82 loc) · 1.81 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登录"
}
},
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path":"pages/maintenance/maintenance",
"style": {
"navigationBarTitleText": "定期维护"
}
},
{
"path":"pages/testing/testing",
"style": {
"navigationBarTitleText": "定期监测"
}
},
{
"path":"pages/management/management",
"style": {
"navigationBarTitleText": "维修管理"
}
},
{
"path":"pages/weather/weather",
"style": {
"navigationBarTitleText": "极端天气"
}
}
],
"globalStyle": {
"navigationStyle":"custom",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8",
"app-plus": {
"titleView": false
}
},
"tabBar": {
"color":"#8a8a8a",
"selectedColor":"#009eff",
"borderStyle":"black",
"backgroundColor":"#ffffff",
"list": [
{
"pagePath":"pages/maintenance/maintenance",
"text":"定期维护",
"iconPath":"static/tabImg/dqwh.png",
"selectedIconPath":"static/tabImg/dqwh_cur.png"
},
{
"pagePath":"pages/testing/testing",
"text":"定期监测",
"iconPath":"static/tabImg/dqjc.png",
"selectedIconPath":"static/tabImg/dqjc_cur.png"
},
{
"pagePath":"pages/management/management",
"text":"维修管理",
"iconPath":"static/tabImg/wxgl.png",
"selectedIconPath":"static/tabImg/wxgl_cur.png"
},
{
"pagePath":"pages/weather/weather",
"text":"极端天气",
"iconPath":"static/tabImg/jdtq.png",
"selectedIconPath":"static/tabImg/jdtq_cur.png"
}
]
}
}