safecheck-client 3.0.34-42 → 3.0.34-44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/android/QRCode/QRCodeBinding.vue +300 -300
- package/src/components/android/QRCode/QRCodePage.vue +212 -212
- package/src/components/android/examples/SafeListExamples.vue +1 -1
- package/src/components/android/examples/UserExamples.vue +1 -1
- package/src/components/rongcheng/AspiratedPaperFeedbackm.vue +1045 -1045
- package/src/components/rongcheng/AspiratedPaperMessage.vue +1378 -1378
- package/src/components/rongcheng/PaperListNPSQ.vue +455 -455
- package/src/components/rongcheng/PaperListSQ.vue +444 -444
- package/src/components/rongcheng/PaperStatem.vue +419 -414
- package/src/components/rongcheng/PhoneUpUserinfo.vue +1328 -1328
- package/src/filiale/bayan/android/SafecheckOrderV.vue +2889 -2889
- package/src/filiale/tongchuan/android/Select.vue +421 -421
- package/src/filiale/tongchuan/android.js +21 -21
- package/src/filiale/tongchuan/utils/EventListener.js +29 -29
- package/src/filiale/tongchuan/utils/coerceBoolean.js +7 -7
- package/src/main.js +33 -33
- package/src/rongcheng.js +316 -316
@@ -1,414 +1,419 @@
|
|
1
|
-
<template>
|
2
|
-
<form novalidate class="form-horizontal auto compatible" style="width: 100%;margin: auto;border:15px">
|
3
|
-
<div style="width: 100%;height: 36px;background-color: #f1f8ff">
|
4
|
-
<div style="width: 8px;height: 100%;background-color: #6aa6e2;margin-right: 20px;float: left"></div>
|
5
|
-
<div style="width: auto;height:100%;float: left;"><p class="title-font" style="margin-top: 5px">安检概况:</p></div>
|
6
|
-
</div>
|
7
|
-
<div class="auto">
|
8
|
-
|
9
|
-
<div class="form-group groupm " >
|
10
|
-
<span class="col-md-3 col-sm-4 col-xs-4" style="margin-top: 8px">安检时间:</span>
|
11
|
-
<div class="col-md-9 col-sm-8 col-xs-8">
|
12
|
-
<input readonly="readonly" style="width: 100%" type="text" v-model="item.f_onsite_time" class=" form-control text-center time-input"/>
|
13
|
-
<!--<input readonly="readonly" style="width: 100%" type="text" v-model="f_onsite_time" class=" form-control text-center time-input"/>-->
|
14
|
-
</div>
|
15
|
-
</div>
|
16
|
-
<div class="form-group groupm">
|
17
|
-
<span class="col-md-3 col-sm-4 col-xs-4" style="margin-top: 8px">上传时间:</span>
|
18
|
-
<div class="col-md-9 col-sm-8 col-xs-8">
|
19
|
-
<input readonly="readonly" style="width: 100%" type="text" v-model="item.f_upload_date" class="form-control text-center time-input"/>
|
20
|
-
</div>
|
21
|
-
</div>
|
22
|
-
<div class="form-group groupm">
|
23
|
-
<span class="col-md-3 col-sm-4 col-xs-4 text-left" style="margin-top: 5px">入户状态:</span>
|
24
|
-
<div :class="style__" class="col-md-9 col-sm-8 col-xs-8 text-center">
|
25
|
-
<input type="radio" name="enterstatus" v-model="item.f_entry_status" id="nopeople" value="到访不遇">到访不遇
|
26
|
-
<input type="radio" name="enterstatus" v-model="item.f_entry_status" id="rejectchecck" value="拒检">拒检
|
27
|
-
<input type="radio" name="enterstatus" v-model="item.f_entry_status" id="enterhouse" value="入户">入户
|
28
|
-
|
29
|
-
</div>
|
30
|
-
</div>
|
31
|
-
<div class="form-group groupm col-sm-12 col-xs-12" v-show="item.f_entry_status=='入户'" style="margin-top: 6px">
|
32
|
-
<span class="text-left col-md-3 col-sm-4 col-xs-4" style="margin-top: 5px"> 燃气使用:</span>
|
33
|
-
<div :class="style__" class="col-md-9 col-sm-8 col-xs-8 text-center">
|
34
|
-
<input type="radio" name="isuseed" v-model="item.f_usegas" id="useedgas" value="已使用">已使用
|
35
|
-
<input type="radio" name="isuseed" v-model="item.f_usegas" id="nousegas" value="未使用">未使用
|
36
|
-
</div>
|
37
|
-
</div>
|
38
|
-
<div :class="style__" class="form-group col-sm-12 col-xs-12" style="margin-top: 6px" v-show="item.f_usegas == '未使用'">
|
39
|
-
<label class="text-left font">未使用天然气照片:</label>
|
40
|
-
<div class="auto">
|
41
|
-
<div class="panel" style="padding: 10px 10px 5px 10px;">
|
42
|
-
<div class="panel-body panel-self" style="background-color: #F8F8F8;width: 100%;height: 260px;position: relative">
|
43
|
-
<div class="row" style="height: 240px;overflow: scroll;top: 1px">
|
44
|
-
<div class="col-sm-4">
|
45
|
-
<img-self :class="style__" :src="item.f_nongasuser_path" alt="未使用天然气照片" width="150" height="200"></img-self>
|
46
|
-
</div>
|
47
|
-
</div>
|
48
|
-
</div>
|
49
|
-
</div>
|
50
|
-
</div>
|
51
|
-
</div>
|
52
|
-
<div class="row" v-show="item.f_entry_status=='到访不遇'">
|
53
|
-
<div class="col-sm-8 col-xs-8" :class="style__">
|
54
|
-
<label class="text-left font">到访不遇照片:</label>
|
55
|
-
<img-self :src="item.f_noanswer_path" alt="到访不遇照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
56
|
-
<img-self :src="item.f_noanswertwo_path" alt="到访不遇照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
<
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
<div class="
|
66
|
-
<label class="
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
<div class="
|
84
|
-
<label class="
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
<!-- <img-self v-if="item.
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
<
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
<!-- <img-self v-if="item.
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
<
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
<!-- <img-self v-if="item.
|
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
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
HostApp.
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
this.$set('f_entry_class', '
|
254
|
-
}
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
//
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
this.$
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
this.$
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
this
|
298
|
-
}
|
299
|
-
this.
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
}
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
this.$set('
|
311
|
-
|
312
|
-
}
|
313
|
-
|
314
|
-
this.$set('
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
this.$set('
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
this.$watch('
|
330
|
-
this.
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
this.
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
this.
|
347
|
-
this.
|
348
|
-
this.
|
349
|
-
|
350
|
-
this.
|
351
|
-
this.
|
352
|
-
this.
|
353
|
-
this.
|
354
|
-
this.
|
355
|
-
this.
|
356
|
-
|
357
|
-
this.
|
358
|
-
|
359
|
-
this
|
360
|
-
this
|
361
|
-
|
362
|
-
this
|
363
|
-
|
364
|
-
this.$set('
|
365
|
-
this.$set('
|
366
|
-
this.$set('
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
border: 1px solid #
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
color:
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
color:
|
408
|
-
}
|
409
|
-
|
410
|
-
.
|
411
|
-
|
412
|
-
|
413
|
-
}
|
414
|
-
|
1
|
+
<template>
|
2
|
+
<form novalidate class="form-horizontal auto compatible" style="width: 100%;margin: auto;border:15px">
|
3
|
+
<div style="width: 100%;height: 36px;background-color: #f1f8ff">
|
4
|
+
<div style="width: 8px;height: 100%;background-color: #6aa6e2;margin-right: 20px;float: left"></div>
|
5
|
+
<div style="width: auto;height:100%;float: left;"><p class="title-font" style="margin-top: 5px">安检概况:</p></div>
|
6
|
+
</div>
|
7
|
+
<div class="auto">
|
8
|
+
|
9
|
+
<div class="form-group groupm " >
|
10
|
+
<span class="col-md-3 col-sm-4 col-xs-4" style="margin-top: 8px">安检时间:</span>
|
11
|
+
<div class="col-md-9 col-sm-8 col-xs-8">
|
12
|
+
<input readonly="readonly" style="width: 100%" type="text" v-model="item.f_onsite_time" class=" form-control text-center time-input"/>
|
13
|
+
<!--<input readonly="readonly" style="width: 100%" type="text" v-model="f_onsite_time" class=" form-control text-center time-input"/>-->
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
<div class="form-group groupm">
|
17
|
+
<span class="col-md-3 col-sm-4 col-xs-4" style="margin-top: 8px">上传时间:</span>
|
18
|
+
<div class="col-md-9 col-sm-8 col-xs-8">
|
19
|
+
<input readonly="readonly" style="width: 100%" type="text" v-model="item.f_upload_date" class="form-control text-center time-input"/>
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
<div class="form-group groupm">
|
23
|
+
<span class="col-md-3 col-sm-4 col-xs-4 text-left" style="margin-top: 5px">入户状态:</span>
|
24
|
+
<div :class="style__" class="col-md-9 col-sm-8 col-xs-8 text-center">
|
25
|
+
<input type="radio" name="enterstatus" v-model="item.f_entry_status" id="nopeople" value="到访不遇">到访不遇
|
26
|
+
<input type="radio" name="enterstatus" v-model="item.f_entry_status" id="rejectchecck" value="拒检">拒检
|
27
|
+
<input type="radio" name="enterstatus" v-model="item.f_entry_status" id="enterhouse" value="入户">入户
|
28
|
+
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
<div class="form-group groupm col-sm-12 col-xs-12" v-show="item.f_entry_status=='入户'" style="margin-top: 6px">
|
32
|
+
<span class="text-left col-md-3 col-sm-4 col-xs-4" style="margin-top: 5px"> 燃气使用:</span>
|
33
|
+
<div :class="style__" class="col-md-9 col-sm-8 col-xs-8 text-center">
|
34
|
+
<input type="radio" name="isuseed" v-model="item.f_usegas" id="useedgas" value="已使用">已使用
|
35
|
+
<input type="radio" name="isuseed" v-model="item.f_usegas" id="nousegas" value="未使用">未使用
|
36
|
+
</div>
|
37
|
+
</div>
|
38
|
+
<div :class="style__" class="form-group col-sm-12 col-xs-12" style="margin-top: 6px" v-show="item.f_usegas == '未使用'">
|
39
|
+
<label class="text-left font">未使用天然气照片:</label>
|
40
|
+
<div class="auto">
|
41
|
+
<div class="panel" style="padding: 10px 10px 5px 10px;">
|
42
|
+
<div class="panel-body panel-self" style="background-color: #F8F8F8;width: 100%;height: 260px;position: relative">
|
43
|
+
<div class="row" style="height: 240px;overflow: scroll;top: 1px">
|
44
|
+
<div class="col-sm-4">
|
45
|
+
<img-self :class="style__" :src="item.f_nongasuser_path" alt="未使用天然气照片" width="150" height="200"></img-self>
|
46
|
+
</div>
|
47
|
+
</div>
|
48
|
+
</div>
|
49
|
+
</div>
|
50
|
+
</div>
|
51
|
+
</div>
|
52
|
+
<div class="row" v-show="item.f_entry_status=='到访不遇'">
|
53
|
+
<div class="col-sm-8 col-xs-8" :class="style__">
|
54
|
+
<label class="text-left font">到访不遇照片:</label>
|
55
|
+
<img-self :src="item.f_noanswer_path" alt="到访不遇照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
56
|
+
<img-self :src="item.f_noanswertwo_path" alt="到访不遇照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
57
|
+
<img-self :src="item.f_noanswer3_path" alt="到访不遇照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
58
|
+
<img-self :src="item.f_noanswer4_path" alt="到访不遇照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
59
|
+
<img-self :src="item.f_noanswer5_path" alt="到访不遇照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
60
|
+
<img-self :src="item.f_noanswer6_path" alt="到访不遇照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
61
|
+
<img-self :src="item.f_noanswer7_path" alt="到访不遇照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
62
|
+
<img-self :src="item.f_noanswer8_path" alt="到访不遇照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
63
|
+
</div>
|
64
|
+
<div class="col-sm-4 col-xs-4">
|
65
|
+
<div class="auto">
|
66
|
+
<label class="font" style="margin-right: 18px">是否激光检漏:</label>
|
67
|
+
<input type="radio" name="laser_check" v-model="item.f_laser_check" id="nopeople1" value="是">是
|
68
|
+
<input type="radio" name="laser_check" v-model="item.f_laser_check" id="rejectchecck1" value="否">否
|
69
|
+
</div>
|
70
|
+
<div class="form-group col-sm-12 col-xs-12" :class="style__" v-show="item.f_jujian_remark">
|
71
|
+
<label class="text-left font">到访备注:{{item.f_buyu_remark}}</label>
|
72
|
+
</div>
|
73
|
+
</div>
|
74
|
+
</div>
|
75
|
+
<div class="row" v-show="item.f_entry_status=='拒检'">
|
76
|
+
<div class="col-sm-8 col-xs-8" :class="style__">
|
77
|
+
<label class="text-left font">拒检照片:</label>
|
78
|
+
<img-self :src="item.f_rejectcheck_path" alt="拒检照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
79
|
+
<img-self v-if="item.f_rejectcheck2_path" :src="item.f_rejectcheck2_path" alt="拒检照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
80
|
+
|
81
|
+
</div>
|
82
|
+
<div class="col-sm-4 col-xs-4">
|
83
|
+
<!-- <div class="auto">
|
84
|
+
<label class="font" style="margin-right: 18px">是否激光检漏:</label>
|
85
|
+
<input type="radio" name="laser_check" v-model="item.f_laser_check" id="nopeople1" value="是">是
|
86
|
+
<input type="radio" name="laser_check" v-model="item.f_laser_check" id="rejectchecck1" value="否">否
|
87
|
+
</div>-->
|
88
|
+
<div class="form-group col-sm-12 col-xs-12" v-show="item.f_jujian_remark" :class="style__">
|
89
|
+
<label class="text-left font">拒检备注:{{item.f_jujian_remark}}</label>
|
90
|
+
</div>
|
91
|
+
</div>
|
92
|
+
</div>
|
93
|
+
|
94
|
+
<div class="row" v-show="item.f_entry_status=='激光检漏'">
|
95
|
+
<div class="col-sm-8 col-xs-8" :class="style__">
|
96
|
+
<label class="text-left font">激光检漏照片:</label>
|
97
|
+
<img-self :src="item.f_detection_path" alt="激光检漏照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
98
|
+
<img-self v-if="item.f_detection2_path" :src="item.f_detection2_path" alt="激光检漏照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
99
|
+
<!-- <img-self v-if="item.f_detection3_path" :src="item.f_detection3_path" alt="激光检漏照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
100
|
+
<!-- <img-self v-if="item.f_detection4_path" :src="item.f_detection4_path" alt="激光检漏照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
101
|
+
<!-- <img-self v-if="item.f_detection5_path" :src="item.f_detection5_path" alt="激光检漏照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
102
|
+
<!-- <img-self v-if="item.f_detection6_path" :src="item.f_detection6_path" alt="激光检漏照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
103
|
+
<!-- <img-self v-if="item.f_detection7_path" :src="item.f_detection7_path" alt="激光检漏照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
104
|
+
<!-- <img-self v-if="item.f_detection8_path" :src="item.f_detection8_path" alt="激光检漏照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
105
|
+
</div>
|
106
|
+
</div>
|
107
|
+
<div class="row" v-show="item.f_entry_status=='立杠保压'">
|
108
|
+
<div class="col-sm-8 col-xs-8" :class="style__">
|
109
|
+
<label class="text-left font">立杠保压照片:</label>
|
110
|
+
<img-self :src="item.f_pressure_path" alt="立杠保压照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
111
|
+
<img-self v-if="item.f_pressure2_path" :src="item.f_pressure2_path" alt="立杠保压照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
112
|
+
<!-- <img-self v-if="item.f_pressure3_path" :src="item.f_pressure3_path" alt="立杠保压照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
113
|
+
<!-- <img-self v-if="item.f_pressure4_path" :src="item.f_pressure4_path" alt="立杠保压照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
114
|
+
<!-- <img-self v-if="item.f_pressure5_path" :src="item.f_pressure5_path" alt="立杠保压照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
115
|
+
<!-- <img-self v-if="item.f_pressure6_path" :src="item.f_pressure6_path" alt="立杠保压照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
116
|
+
<!-- <img-self v-if="item.f_pressure7_path" :src="item.f_pressure7_path" alt="立杠保压照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
117
|
+
<!-- <img-self v-if="item.f_pressure8_path" :src="item.f_pressure8_path" alt="立杠保压照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
118
|
+
</div>
|
119
|
+
</div>
|
120
|
+
<div class="row" v-show="item.f_entry_status=='室外关阀'">
|
121
|
+
<div class="col-sm-8 col-xs-8" :class="style__">
|
122
|
+
<label class="text-left font">室外关阀照片:</label>
|
123
|
+
<img-self :src="item.f_outdoor_path" alt="室外关阀照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
124
|
+
<img-self v-if="item.f_outdoor2_path" :src="item.f_outdoor2_path" alt="室外关阀照片" style=" display: inline-block" width="150" height="200"> </img-self>
|
125
|
+
<!-- <img-self v-if="item.f_outdoor3_path" :src="item.f_outdoor3_path" alt="室外关阀照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
126
|
+
<!-- <img-self v-if="item.f_outdoor4_path" :src="item.f_outdoor4_path" alt="室外关阀照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
127
|
+
<!-- <img-self v-if="item.f_outdoor5_path" :src="item.f_outdoor5_path" alt="室外关阀照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
128
|
+
<!-- <img-self v-if="item.f_outdoor6_path" :src="item.f_outdoor6_path" alt="室外关阀照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
129
|
+
<!-- <img-self v-if="item.f_outdoor7_path" :src="item.f_outdoor7_path" alt="室外关阀照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
130
|
+
<!-- <img-self v-if="item.f_outdoor8_path" :src="item.f_outdoor8_path" alt="室外关阀照片" style=" display: inline-block" width="150" height="200"> </img-self>-->
|
131
|
+
</div>
|
132
|
+
</div>
|
133
|
+
|
134
|
+
<!-- <div class="row" v-show="item.f_entry_status=='拒检'">
|
135
|
+
<div class="col-sm-8 col-xs-8">
|
136
|
+
<label class="text-left font">拒检照片:</label>
|
137
|
+
<div class="auto">
|
138
|
+
<div class="panel" style="padding: 10px 10px 5px 10px;">
|
139
|
+
<div class="panel-body panel-self" style="background-color: #F8F8F8;width: 100%;height: 260px;position: relative">
|
140
|
+
<div class="row" style="height: 240px;overflow: scroll;top: 1px">
|
141
|
+
<div class="col-sm-4">
|
142
|
+
<img-self :src="item.f_rejectcheck_path" alt="拒检照片" width="150" height="200"> </img-self>
|
143
|
+
</div>
|
144
|
+
</div>
|
145
|
+
|
146
|
+
</div>
|
147
|
+
</div>
|
148
|
+
</div>
|
149
|
+
</div>
|
150
|
+
<div class="col-sm-4 col-xs-4">
|
151
|
+
<label class="text-left font">拒检备注:{{item.f_jujian_remark}}</label>
|
152
|
+
</div>
|
153
|
+
</div>-->
|
154
|
+
|
155
|
+
<div :class="style__" class="form-group" v-show="item.f_usegas == '未使用'">
|
156
|
+
<sapn class="text-left col-md-12 col-sm-12 col-xs-12">处置方式:</sapn>
|
157
|
+
<div class="col-xs-12 col-sm-12 col-md-12">
|
158
|
+
<input type="checkbox" v-model="item.f_no_gas_device">无燃气具
|
159
|
+
<input type="checkbox" v-model="item.f_close_valve">关闭表前阀
|
160
|
+
<input type="checkbox" v-model="item.f_unload_battery">取下表内电池
|
161
|
+
</div>
|
162
|
+
</div>
|
163
|
+
<!--<div align="center">用户情况表</div>-->
|
164
|
+
<!--<div class="form-group" :class="style__">-->
|
165
|
+
<!--<span class="col-md-3 col-sm-4 col-xs-4">在家时间:</span>-->
|
166
|
+
<!--<div class="col-md-9 col-sm-8 col-xs-8">-->
|
167
|
+
<!--<input readonly="readonly" style="width: 100%" type="text" v-model="item.f_user_inhome_time" class="form-control text-center time-input"/>-->
|
168
|
+
<!--</div>-->
|
169
|
+
<!--</div>-->
|
170
|
+
<!--<div class="form-group" :class="style__">-->
|
171
|
+
<!--<span class="col-md-3 col-sm-4 col-xs-4">建议安检时间:</span>-->
|
172
|
+
<!--<div class="col-md-9 col-sm-8 col-xs-8">-->
|
173
|
+
<!--<input readonly="readonly" style="width: 100%" type="text" v-model="item.f_user_check_time" class="form-control text-center time-input"/>-->
|
174
|
+
<!--</div>-->
|
175
|
+
<!--</div>-->
|
176
|
+
<!--<div class="form-group" :class="style__">-->
|
177
|
+
<!--<span class="col-md-3 col-sm-4 col-xs-4">备用联系方式:</span>-->
|
178
|
+
<!--<div class="col-md-9 col-sm-8 col-xs-8">-->
|
179
|
+
<!--<input readonly="readonly" style="width: 100%" type="text" v-model="item.f_user_spare_phone" class="form-control text-center time-input"/>-->
|
180
|
+
<!--</div>-->
|
181
|
+
<!--</div>-->
|
182
|
+
<!--<div class="form-group" :class="style__">-->
|
183
|
+
<!--<span class="col-md-3 col-sm-4 col-xs-4">家庭情况备注:</span>-->
|
184
|
+
<!--<div class="col-md-9 col-sm-8 col-xs-8">-->
|
185
|
+
<!--<input readonly="readonly" style="width: 100%" type="text" v-model="item.f_user_family_remarks" class="form-control text-center time-input"/>-->
|
186
|
+
<!--</div>-->
|
187
|
+
<!--</div>-->
|
188
|
+
<!--<div class="form-group" :class="style__">-->
|
189
|
+
<!--<span class="col-md-3 col-sm-4 col-xs-4">设备情况备注:</span>-->
|
190
|
+
<!--<div class="col-md-9 col-sm-8 col-xs-8">-->
|
191
|
+
<!--<input readonly="readonly" style="width: 100%" type="text" v-model="item.f_user_equipment_remarks" class="form-control text-center time-input"/>-->
|
192
|
+
<!--</div>-->
|
193
|
+
<!--</div>-->
|
194
|
+
|
195
|
+
</div>
|
196
|
+
|
197
|
+
</form>
|
198
|
+
</template>
|
199
|
+
|
200
|
+
<script>
|
201
|
+
import RadioGroup from 'vue-client/src/vue-strap/src/radioGroup'
|
202
|
+
import Radio from 'vue-client/src/vue-strap/src/radioBtn'
|
203
|
+
import Vue from 'vue'
|
204
|
+
import * as Util from '../Util'
|
205
|
+
|
206
|
+
|
207
|
+
export default {
|
208
|
+
title: '安检概况',
|
209
|
+
data() {
|
210
|
+
return{
|
211
|
+
item:this.$parent.data
|
212
|
+
}
|
213
|
+
},
|
214
|
+
methods: {
|
215
|
+
cameraCallBack(prop, fileName) {
|
216
|
+
HostApp.__this__.$set(prop, fileName + '?' + Math.random())
|
217
|
+
//tag
|
218
|
+
HostApp.__callback__ = null
|
219
|
+
HostApp.__this__ = null
|
220
|
+
},
|
221
|
+
takePic(prop, title) {
|
222
|
+
HostApp.__callback__ = this.cameraCallBack
|
223
|
+
HostApp.__this__ = this
|
224
|
+
//tag
|
225
|
+
let fileName
|
226
|
+
if (!this[prop] || this[prop].includes("nopic.png")) {
|
227
|
+
fileName = Util.guid() + '-' + prop + '.jpg'
|
228
|
+
} else {
|
229
|
+
fileName = Util.getFileName(this[prop])
|
230
|
+
}
|
231
|
+
HostApp._open_a_page({
|
232
|
+
type: 'boomerang',
|
233
|
+
page: 'com.aofeng.hybrid.android.peripheral.CameraActivity',
|
234
|
+
param: {
|
235
|
+
file: fileName,
|
236
|
+
requestCode: 111,
|
237
|
+
callback: 'javascript:HostApp.__callback__("' + prop + '", "%s");',
|
238
|
+
watermark: title + '\t时间:' + Util.toStandardTimeString() + '\t' + Vue.user.name
|
239
|
+
}
|
240
|
+
})
|
241
|
+
},
|
242
|
+
delfile(prop, fileName) {
|
243
|
+
if (fileName == Vue.nopic)
|
244
|
+
return
|
245
|
+
else {
|
246
|
+
HostApp.delfile(fileName)
|
247
|
+
this[prop] = Vue.nopic
|
248
|
+
}
|
249
|
+
},
|
250
|
+
setEntryClass(val) {
|
251
|
+
if (val == '到访不遇') {
|
252
|
+
this.f_usegas =''
|
253
|
+
this.$set('f_entry_class', 'warning')
|
254
|
+
}else if (val == '拒检') {
|
255
|
+
this.f_usegas = ''
|
256
|
+
this.$set('f_entry_class', 'danger')
|
257
|
+
} else if (val == '入户') {
|
258
|
+
this.$set('f_entry_class', 'success')
|
259
|
+
}
|
260
|
+
},
|
261
|
+
setUsegas(val){
|
262
|
+
if (val == '未使用')
|
263
|
+
this.$set('f_useclass', 'default')
|
264
|
+
if (val == '已使用')
|
265
|
+
this.$set('f_useclass', 'success')
|
266
|
+
},
|
267
|
+
start(){
|
268
|
+
// //tag
|
269
|
+
this.$parent.$parent.$parent.isStrat = true
|
270
|
+
this.$set('action',!this.action)
|
271
|
+
this.$set('f_onsite_time', Util.toStandardTimeString())
|
272
|
+
//this.$set('f_offsite_time', Util.toStandardTimeString())
|
273
|
+
//this.$parent.$parent.$parent.tick()
|
274
|
+
}
|
275
|
+
},
|
276
|
+
components: {
|
277
|
+
RadioGroup,
|
278
|
+
Radio
|
279
|
+
},
|
280
|
+
ready() {
|
281
|
+
|
282
|
+
//tag
|
283
|
+
/*this.$set('last_check_date',this.$parent.$parent.$parent.$parent.item.f_last_check_date)*/
|
284
|
+
//tag
|
285
|
+
|
286
|
+
|
287
|
+
/* if(this.$parent.$parent.$parent.item.f_last_check_result){
|
288
|
+
let checkResult = JSON.parse(this.$parent.$parent.$parent.item.f_last_check_result)
|
289
|
+
this.$set('last_check_result',checkResult.result)
|
290
|
+
this.$set('last_check_data.data',checkResult.data)
|
291
|
+
}else{
|
292
|
+
this.$set('last_check_result','')
|
293
|
+
this.$set('last_check_data.data',[])
|
294
|
+
}
|
295
|
+
if(this.$parent.$parent.$parent.data.f_onsite_time){
|
296
|
+
//tag
|
297
|
+
this.$parent.$parent.$parent.startClick = true
|
298
|
+
}
|
299
|
+
if(this.$parent.$parent.$parent.role == 'androidview'){
|
300
|
+
this.action = false
|
301
|
+
this.f_onsite_time = this.$parent.$parent.$parent.f_onsite_time
|
302
|
+
this.f_offsite_time = this.$parent.$parent.$parent.f_offsite_time
|
303
|
+
}
|
304
|
+
this.action = true
|
305
|
+
//tag
|
306
|
+
if(this.f_onsite_time){
|
307
|
+
this.$parent.$parent.$parent.isStrat = true
|
308
|
+
}
|
309
|
+
if (this.$parent.$parent.$parent.role == 'repair') {
|
310
|
+
this.$set('style__', 'divmask')
|
311
|
+
this.$set('style_view_', '')
|
312
|
+
}
|
313
|
+
else if (this.$parent.$parent.$parent.role == 'view') {
|
314
|
+
this.$set('style__', 'divmask')
|
315
|
+
this.$set('style_view_', 'divmask')
|
316
|
+
//tag
|
317
|
+
} else {
|
318
|
+
this.$set('style__', '')
|
319
|
+
this.$set('style_view_', '')
|
320
|
+
}
|
321
|
+
if (!this.f_nongasuser_path)
|
322
|
+
this.$set('f_nongasuser_path', Vue.nopic)
|
323
|
+
if (!this.f_noanswer_path)
|
324
|
+
this.$set('f_noanswer_path', Vue.nopic)
|
325
|
+
if (!this.f_rejectcheck_path)
|
326
|
+
this.$set('f_rejectcheck_path', Vue.nopic)
|
327
|
+
|
328
|
+
|
329
|
+
this.$watch('f_usegas', (val) => {
|
330
|
+
this.setUsegas(val)
|
331
|
+
})
|
332
|
+
|
333
|
+
this.setEntryClass(this.f_entry_status)
|
334
|
+
this.$watch('f_entry_status', (val) => {
|
335
|
+
this.setEntryClass(val)
|
336
|
+
|
337
|
+
if (val == '到访不遇') {
|
338
|
+
this.f_rejectcheck_path = Vue.nopic
|
339
|
+
}
|
340
|
+
if (val == '拒检') {
|
341
|
+
this.f_noanswer_path = Vue.nopic
|
342
|
+
}
|
343
|
+
|
344
|
+
if (val != '入户') {
|
345
|
+
//清理安检概括
|
346
|
+
this.f_no_gas_device = false
|
347
|
+
this.f_unload_battery = false
|
348
|
+
this.f_close_valve = false
|
349
|
+
//清理全局隐患
|
350
|
+
this.f_defect_cramped = false
|
351
|
+
this.f_defect_bedroom = false
|
352
|
+
this.f_defect_longpipe = false
|
353
|
+
this.f_defect_firesource = false
|
354
|
+
this.f_defect_explosive = false
|
355
|
+
this.f_defect_viacabinet = false
|
356
|
+
this.f_defect_intermittent = false
|
357
|
+
this.f_defect_nearfire = false
|
358
|
+
this.f_defect_openkitchen = false
|
359
|
+
this.f_defect_hang = false
|
360
|
+
this.f_cramped_path = Vue.nopic
|
361
|
+
//用户评价
|
362
|
+
this.f_client_evaluation = null
|
363
|
+
//清设备
|
364
|
+
this.$set('f_meters', [])
|
365
|
+
this.$set('f_plumbs', [])
|
366
|
+
this.$set('f_valves', [])
|
367
|
+
this.$set('f_inner_plumbs', [])
|
368
|
+
this.$set('f_alarms', [])
|
369
|
+
this.$set('f_cookers', [])
|
370
|
+
this.$set('f_heaters', [])
|
371
|
+
this.$set('f_furnaces', [])
|
372
|
+
//TODO 删除已有的照片
|
373
|
+
}
|
374
|
+
})*/
|
375
|
+
}
|
376
|
+
|
377
|
+
}
|
378
|
+
</script>
|
379
|
+
<style>
|
380
|
+
.btn-start{
|
381
|
+
background-color: #f5fbff;
|
382
|
+
border-radius: 7px;
|
383
|
+
border: 1px solid #dcdcdc;
|
384
|
+
font: 15px PingFang-SC-Medium;
|
385
|
+
color: #499edf;
|
386
|
+
}
|
387
|
+
.time-input{
|
388
|
+
border: 1px solid #c0c0c0;
|
389
|
+
border-radius: 3px;
|
390
|
+
}
|
391
|
+
.div-photo{
|
392
|
+
width: auto;
|
393
|
+
height: auto;
|
394
|
+
/* margin-top: 10px; */
|
395
|
+
position: absolute;
|
396
|
+
bottom: 10px;
|
397
|
+
right: 10px;
|
398
|
+
}
|
399
|
+
.btn-photo{
|
400
|
+
border: 0;
|
401
|
+
border-radius: 7px;
|
402
|
+
background-color: #7dc1f4;
|
403
|
+
font: 15px PingFang-SC-Bold;
|
404
|
+
height: 20%;
|
405
|
+
}
|
406
|
+
.color-red{
|
407
|
+
color: red;
|
408
|
+
}
|
409
|
+
|
410
|
+
.title-font{
|
411
|
+
font: 18px PingFang-SC-Bold;
|
412
|
+
color: #333333;
|
413
|
+
}
|
414
|
+
|
415
|
+
.groupm{
|
416
|
+
margin-top: 25px;
|
417
|
+
margin-bottom: 25px;
|
418
|
+
}
|
419
|
+
</style>
|