pages.json
4.41 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
{
"easycom": {
"^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
},
"pages": [{
"path": "pages/index/splash",
"style": {
"navigationBarTitleText": "",
"disableScroll": true,
"app-plus": {
"titleNView": false
}
}
},
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页",
"enablePullDownRefresh": true
}
},
{
"path": "pages/device/device",
"style": {
"navigationBarTitleText": "设备"
}
},
{
"path": "pages/alarm/alarm",
"style": {
"navigationBarTitleText": "告警"
}
},
{
"path": "pages/personal/personal",
"style": {
"navigationBarTitleText": "个人中心",
"disableScroll": true
}
},
{
"path": "pages/index/components/camera/camera",
"style": {
"navigationBarTitleText": "查看摄像头"
}
},
{
"path": "pages/index/components/configuration/configuration",
"style": {
"navigationBarTitleText": "查看组态"
}
},
{
"path": "pages/index/components/configuration/configuration-detail",
"style": {
"navigationBarTitleText": "组态详情"
}
},
{
"path": "pages/organization/organization",
"style": {
"navigationBarTitleText": "组织筛选"
}
},
{
"path": "pages/index/components/visualBoard/index",
"style": {
"navigationBarTitleText": "查看看板"
}
},
{
"path": "pages/index/components/visualBoard/detail",
"style": {
"navigationBarTitleText": "看板详情"
}
}
],
"subPackages": [{
"root": "alarm-subpackage",
"pages": [{
"path": "alarm-detail/alarm-detail",
"style": {
"navigationBarTitleText": "告警详情"
}
}]
},
{
"root": "device-subpackage",
"pages": [{
"path": "device-detail/device-detail",
"style": {
"navigationBarTitleText": "设备详情"
}
},
{
"path": "device-detail/components/command-detail",
"style": {
"navigationBarTitleText": "命令详情"
}
},
{
"path": "device-detail/device-position",
"style": {
"navigationBarTitleText": "设备地理位置"
},
"permission": {
"scope.userLocation": {
"desc": "如果没有位置信息则使用当前定位"
}
},
"requiredPrivateInfos": [
"getLocation"
]
}
]
},
{
"root": "sysnotify-subpackage",
"pages": [{
"path": "sys-notify/system-notify",
"style": {
"navigationBarTitleText": "系统通知"
}
},
{
"path": "sys-notify/notify-detail",
"style": {
"navigationBarTitleText": "通知详情"
}
}
]
},
{
"root": "feedback-subpackage",
"pages": [{
"path": "feedback/feedback",
"style": {
"navigationBarTitleText": "意见反馈"
}
}]
},
{
"root": "login-subpackage",
"pages": [{
"path": "public/login",
"style": {
"navigationBarTitleText": "登录"
}
},
{
"path": "other/set",
"style": {
"navigationBarTitleText": "个人资料"
}
},
{
"path": "other/code",
"style": {
"navigationBarTitleText": "手机验证码登录"
}
},
{
"path": "other/find-password",
"style": {
"navigationBarTitleText": "忘记密码"
}
}
]
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "ThingsKit",
"navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#FFFFFF",
"backgroundColorTop": "#FFFFFF"
},
"tabBar": {
"color": "#000000",
"selectedColor": "#377dff",
"borderStyle": "black",
"backgroundColor": "#606266",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/home-un.png",
"selectedIconPath": "static/home-yes.png",
"text": "首页"
},
{
"pagePath": "pages/device/device",
"iconPath": "static/device-un.png",
"selectedIconPath": "static/device-yes.png",
"text": "设备"
},
{
"pagePath": "pages/alarm/alarm",
"iconPath": "static/alert-un.png",
"selectedIconPath": "static/alert-yes.png",
"text": "告警"
},
{
"pagePath": "pages/personal/personal",
"iconPath": "static/my-un.png",
"selectedIconPath": "static/my-yes.png",
"text": "我的"
}
]
}
}