safecheck-client 4.0.1-4 → 4.0.1-6

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.
Files changed (30) hide show
  1. package/package.json +1 -1
  2. package/src/components/NewDefectList/DefectListNew.vue +663 -663
  3. package/src/components/NewDefectList/DefectPaperNew.vue +1184 -1184
  4. package/src/components/Util/SafecheckUpload.vue +281 -281
  5. package/src/components/android/PhoneUpUserinfo.vue +1249 -1249
  6. package/src/components/android/SafeRightTree.vue +218 -218
  7. package/src/components/android/SafecheckDevices.vue +1340 -1340
  8. package/src/components/paper/PaperList.vue +797 -797
  9. package/src/components/pc/CheckBook.vue +303 -303
  10. package/src/components/pc/CheckBookArea.vue +146 -146
  11. package/src/components/pc/CheckBookCompany.vue +144 -144
  12. package/src/components/pc/CheckBookDetails.vue +161 -161
  13. package/src/components/pc/CheckBookEntry.vue +60 -60
  14. package/src/components/pc/CheckBookSearchArea.vue +560 -560
  15. package/src/components/pc/CheckBookSearchUnit.vue +229 -229
  16. package/src/components/pc/CheckBookSearchUser.vue +659 -659
  17. package/src/components/pc/CheckBookSearchUserList.vue +674 -674
  18. package/src/components/pc/CheckBookUser.vue +333 -333
  19. package/src/components/pc/PaperDefectMain.vue +880 -880
  20. package/src/filiale/jinhong/pc/checkUserList.vue +742 -743
  21. package/src/filiale/meihekou/android/CheckPlanList.vue +198 -198
  22. package/src/filiale/meihekou/android/CheckPlanListArea.vue +190 -190
  23. package/src/filiale/meihekou/android/CurrentCreate.vue +1038 -1038
  24. package/src/filiale/meihekou/android/PaperFeedback.vue +1542 -1542
  25. package/src/filiale/meihekou/android/SafecheckDevices.vue +1340 -1340
  26. package/src/filiale/meihekou/android/SafecheckOrderV.vue +2433 -2433
  27. package/src/filiale/meihekou/android.js +22 -22
  28. package/src/filiale/meihekou/pc/NewCheckpaper.vue +2027 -2027
  29. package/src/filiale/qingjian/pc/NewCheckpaper.vue +1 -0
  30. package/src/main.js +33 -33
@@ -1,2027 +1,2027 @@
1
- <style scoped id="printStyle">
2
- .img {
3
- border: 1px solid #9773ed;
4
- width: auto;
5
- height: auto;
6
- float: left;
7
- text-align: center;
8
- margin: 6px;
9
- }
10
-
11
- img {
12
- margin: 6px;
13
- }
14
-
15
-
16
- .container {
17
- margin: 10px auto;
18
- width: 80%;
19
- height: auto;
20
- }
21
-
22
- div::-webkit-scrollbar {
23
- width: 8px !important;
24
- height: 0 !important;
25
- }
26
-
27
- div {
28
- -ms-overflow-style: none;
29
- overflow: -moz-scrollbars-none;
30
- }
31
-
32
- .divmask {
33
- pointer-events: none;
34
- }
35
-
36
- .app-header {
37
- border-radius: 50%;
38
- background: rgba(73, 158, 223, 0.4);
39
- color: #FFF;
40
- padding: 20px;
41
- text-align: center;
42
- font-size: 1.2em;
43
- z-index: 10;
44
- opacity: 0.5;
45
- bottom: 50px;
46
- margin-top: -20px;
47
- position: absolute;
48
- top: 10%;
49
- right: 2%;
50
- height: 8%;
51
- }
52
- </style>
53
-
54
- <template>
55
- <div class="basic-main" style="height: 100%">
56
- <div class="page-header app-header auto" style="padding: 15px;margin-right: 10px;right: 0%;height: 7%">
57
- <div @click="back()">
58
- <img src="../../../assets/back.png" style="margin: 0px"/>
59
- </div>
60
- </div>
61
- <div v-show="showPdfDownload" class="page-header app-header auto"
62
- style="padding: 15px;margin-right: 3.7%;right: 0%;height: 7%">
63
- <div @click="exportToPDF()">
64
- <img src="../../../assets/下载_.png" style="margin: 0px;width: 30px"/>
65
- </div>
66
- </div>
67
- <work-busy :is-busy="loading"></work-busy>
68
- <div class="container-fluid" style="overflow: scroll">
69
- <div class="row">
70
- <div class="col-md-5" style="margin-right: 2%;margin-left: 2%;height: 100%;overflow: scroll">
71
- <div style="width: 100%;margin: auto">
72
- <table class="table table-striped table-bordered" style="margin-bottom: 6px;margin-top: 35px">
73
- <thead>
74
- <tr>
75
- <th colspan="6" style="text-align: center">用户基本信息</th>
76
- </tr>
77
- </thead>
78
- <tbody>
79
- <tr>
80
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">用户编号:</td>
81
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_userinfo_code }}</td>
82
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">用户名称:</td>
83
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_user_name }}</td>
84
- </tr>
85
- <tr>
86
- <td style="text-align: center;border: #E9E9E9 solid 1px">证件号码:</td>
87
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_idnumber }}</td>
88
- <td style="text-align: center;border: #E9E9E9 solid 1px">用户类型:</td>
89
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_check_type }}</td>
90
- </tr>
91
- <tr>
92
- <td style="text-align: center;border: #E9E9E9 solid 1px">用户电话:</td>
93
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_user_phone }}</td>
94
- <td style="text-align: center;border: #E9E9E9 solid 1px">区 / 县:</td>
95
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_slice_area }}</td>
96
- </tr>
97
- <tr>
98
- <td style="text-align: center;border: #E9E9E9 solid 1px">街 道:</td>
99
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_street }}</td>
100
- <td style="text-align: center;border: #E9E9E9 solid 1px">楼 号:</td>
101
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_building }}</td>
102
- </tr>
103
- <tr>
104
- <td style="text-align: center;border: #E9E9E9 solid 1px">单 元:</td>
105
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_unit }}</td>
106
- <td style="text-align: center;border: #E9E9E9 solid 1px">楼 层:</td>
107
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_floor }}</td>
108
- </tr>
109
- <tr>
110
- <td style="text-align: center;border: #E9E9E9 solid 1px">门 牌 号 :</td>
111
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_room }}</td>
112
- <td style="text-align: center;border: #E9E9E9 solid 1px">用户性质:</td>
113
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_userproperties }}</td>
114
- </tr>
115
- <tr>
116
- <td style="text-align: center;border: #E9E9E9 solid 1px">备注信息:</td>
117
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_comments }}</td>
118
- <td style="text-align: center;border: #E9E9E9 solid 1px">小区名称:</td>
119
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_residential_area }}</td>
120
- </tr>
121
- <tr>
122
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px">详细住址:</td>
123
- <td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_address }}</td>
124
- </tr>
125
- </tbody>
126
- </table>
127
- <table class="table table-striped table-bordered" style="margin-top: 40px">
128
- <thead>
129
- <tr>
130
- <th colspan="6" style="text-align: center">设备信息</th>
131
- </tr>
132
- </thead>
133
- <tbody>
134
- <template v-for=" item in userdevice">
135
- <tr >
136
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">设备名称:</td>
137
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_devices_type }}</td>
138
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">设备型号:</td>
139
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_brand }}</td>
140
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">生产日期:</td>
141
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_make_date }}</td>
142
- </tr>
143
- <tr >
144
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">到期时间:</td>
145
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_expire_date }}</td>
146
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">购买方式:</td>
147
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.WatchPurchase }}</td>
148
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">安装方式:</td>
149
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_install_type }}</td>
150
- </tr>
151
- </template>
152
- </tbody>
153
- </table>
154
- <table class="table table-striped table-bordered" style="margin-top: 40px"
155
- v-show="paperdata.f_entry_status=='入户'">
156
- <thead>
157
- <tr>
158
- <th colspan="4" style="text-align: center">用户安检概况</th>
159
- </tr>
160
- </thead>
161
- <tbody>
162
- <tr>
163
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">到达时间:</td>
164
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_onsite_time }}</td>
165
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">离开时间:</td>
166
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_offsite_time }}</td>
167
- </tr>
168
- <tr>
169
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">入户状态:</td>
170
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_entry_status }}</td>
171
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">燃气使用:</td>
172
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_usegas }}</td>
173
- </tr>
174
- <tr>
175
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">用户满意度:</td>
176
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">{{
177
- paperdata.f_client_evaluation
178
- }}
179
- </td>
180
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">安检结果:</td>
181
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;"
182
- :style="{'color':ajresult=='有隐患'?'red':''}">{{ ajresult }}
183
- </td>
184
- </tr>
185
- <tr>
186
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">备注:</td>
187
- <td colspan="3"
188
- style="text-align: center;border: #E9E9E9 solid 1px;word-wrap:break-word;word-break:break-all;width:87%">
189
- {{ paperdata.f_repair_approved_note }}
190
- </td>
191
- </tr>
192
- <tr>
193
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">隐患详情:</td>
194
- <td colspan="3"
195
- style="text-align: center;border: #E9E9E9 solid 1px;word-wrap:break-word;word-break:break-all;width:87%">
196
- <span v-for="deviceCollect in deviceCollects">
197
- <span class="li-font">
198
- {{ deviceCollect.name }}:{{ deviceCollect.value }}&nbsp;&nbsp;&nbsp;
199
- </span>
200
- <br>
201
- <span v-if="deviceCollect.value == '有隐患'">
202
- <lable>
203
- 隐患:
204
- </lable>
205
- <span v-for="val in deviceCollect.devices">
206
- {{ val }}
207
- </span><br>
208
- </span>
209
-
210
- </span>
211
- </td>
212
- </tr>
213
-
214
- </tbody>
215
- </table>
216
- <table class="table table-striped table-bordered" style="margin-top: 40px"
217
- v-show="paperdata.f_entry_status!='入户'">
218
- <thead>
219
- <tr>
220
- <th colspan="4" style="text-align: center">用户安检概况</th>
221
- </tr>
222
- </thead>
223
- <tbody>
224
- <tr>
225
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">到达时间:</td>
226
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_onsite_time }}</td>
227
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">离开时间:</td>
228
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_offsite_time }}</td>
229
- </tr>
230
- <tr>
231
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">入户状态:</td>
232
- <td colspan="2" style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">
233
- {{ paperdata.f_entry_status }}
234
- </td>
235
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">
236
- <button-link style="color: black" type="button" class="btn btn-link" @click="showpicture2()">
237
- {{ dev.lname }}
238
- 查看{{ data.f_entry_status }}照片
239
- </button-link>
240
- </td>
241
- </tr>
242
-
243
- </tbody>
244
- </table>
245
- <table class="table table-striped table-bordered" style="margin-top: 40px"
246
- v-show="item.f_no_checkplan == '复检'">
247
- <thead>
248
- <tr>
249
- <th colspan="4" style="text-align: center">上次安检情况</th>
250
- </tr>
251
- </thead>
252
- <tbody>
253
- <tr>
254
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">上次安检到达时间:</td>
255
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
256
- lastCheckData.f_onsite_time
257
- }}
258
- </td>
259
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">上次安检离开时间:</td>
260
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
261
- lastCheckData.f_offsite_time
262
- }}
263
- </td>
264
- </tr>
265
- <tr>
266
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">上次安检员:</td>
267
- <td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">
268
- {{ lastCheckData.f_checker_name }}
269
- </td>
270
- </tr>
271
- <tr>
272
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">安检结果:</td>
273
- <td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">
274
- {{ lastCheckData.f_defect_text }}
275
- </td>
276
- </tr>
277
-
278
- </tbody>
279
- </table>
280
- <table class="table table-striped table-bordered" style="margin-top: 35px"
281
- v-show="paperdata.f_entry_status=='入户' && paperdata.f_usegas == '未用气'">
282
- <thead>
283
- <tr>
284
- <th style="text-align: center">未用气照片</th>
285
- </tr>
286
- </thead>
287
- <tbody>
288
- <tr>
289
- <td style="margin: auto;text-align: center">
290
- <div class="container" style="max-width: 550px;background: #FFFFFF">
291
- <div class="img">
292
- <img-self-plus :src="paperdata.f_nongasuser_path" style="float: left" width="150"
293
- height="200"></img-self-plus>
294
- </div>
295
- </div>
296
- </td>
297
- </tr>
298
- </tbody>
299
- </table>
300
- <table class="table table-striped table-bordered" style="margin-top: 35px"
301
- v-show="showPdfImg && paperdata.f_entry_status=='入户' && ajresult=='有隐患'">
302
- <thead>
303
- <tr>
304
- <th style="text-align: center">隐患照片</th>
305
- </tr>
306
- </thead>
307
- <tbody>
308
- <tr>
309
- <td style="margin: auto;text-align: center">
310
- <div class="container" style="max-width: 550px;background: #FFFFFF">
311
- <div class="img" v-for="img in deviceImgs">
312
- <img-self-plus :list="deviceCollect.imgs " :src="img.f_overall_path" style="float: left"
313
- width="150"
314
- height="200"></img-self-plus>
315
- </div>
316
- </div>
317
-
318
-
319
- </td>
320
-
321
- </tr>
322
- </tbody>
323
- </table>
324
- <table class="table table-striped table-bordered" style="margin-top: 35px"
325
- v-show="paperdata.f_entry_status=='入户'">
326
- <thead>
327
- <tr>
328
- <th style="text-align: center">总体安检照片</th>
329
- </tr>
330
- </thead>
331
- <tbody>
332
- <tr>
333
- <td style="margin: auto;text-align: center">
334
- <div class="container" style="max-width: 550px;background: #FFFFFF">
335
- <div class="img" v-for="img in paperdata.f_overall_imgs">
336
- <img-self-plus :list="paperdata.f_overall_imgs " :src="img.f_overall_path" style="float: left"
337
- width="150"
338
- height="200"></img-self-plus>
339
- </div>
340
- </div>
341
-
342
-
343
- </td>
344
-
345
- </tr>
346
- </tbody>
347
- </table>
348
- <table class="table table-striped table-bordered" style="width: 100%"
349
- v-show="paperdata.f_entry_status=='入户' && (paperdata.f_sign_path || f_user_path) ">
350
- <thead>
351
- <tr>
352
- <th style="text-align: center">用户签名照片</th>
353
- </tr>
354
- </thead>
355
- <tbody>
356
- <tr>
357
- <td style="margin: auto;text-align: center" v-if="paperdata.f_sign_path">
358
- <div class="container" style="max-width: 500px;background: #FFFFFF" >
359
- <div class="img" style="float: none">
360
- <img-self-plus :src="paperdata.f_sign_path" width="200" height="200"></img-self-plus>
361
- </div>
362
- </div>
363
- </td>
364
- <td style="margin: auto;text-align: center" v-if="f_user_path">
365
- <div class="container" style="max-width: 550px;background: #FFFFFF" >
366
- <div class="img" style="float: none">
367
- <img-self-plus :src="'rs/image/file/'+f_user_path"
368
- width="200"
369
- height="200"></img-self-plus>
370
- </div>
371
- </div>
372
- </td>
373
- </tr>
374
- </tbody>
375
- </table>
376
- <table class="table table-striped table-bordered"
377
- v-show="paperdata.f_entry_status=='入户' && paperdata.f_defect_notified">
378
- <thead>
379
- <tr>
380
- <th style="text-align: center">安检通知书/隐患整改通知书</th>
381
- </tr>
382
- </thead>
383
- <tbody>
384
- <tr>
385
- <td style="margin: auto;text-align: center">
386
- <div class="container" style="max-width: 500px;background: #FFFFFF">
387
- <div class="img" style="float: none">
388
- <img-self-plus :src="paperdata.f_notified_path" width="486" height="300"></img-self-plus>
389
- </div>
390
- </div>
391
- </td>
392
- </tr>
393
- </tbody>
394
- </table>
395
- <table class="table table-striped table-bordered"
396
- v-show="paperdata.f_entry_status=='入户'&& paperdata.f_video_path">
397
- <thead>
398
- <tr>
399
- <th style="text-align: center">安检视频</th>
400
- </tr>
401
- </thead>
402
- <tbody>
403
- <tr>
404
- <td style="margin: auto;text-align: center">
405
- <div class="container" style="max-width: 500px;background: #FFFFFF">
406
- <video width="320" height="200" controls v-if="paperdata.f_video_path">
407
- <source :src="paperdata.f_video_path" type="video/mp4">
408
- </video>
409
- </div>
410
- </td>
411
- </tr>
412
- </tbody>
413
- </table>
414
- <table class="table table-striped table-bordered"
415
- v-show="item.f_recording1_path">
416
- <thead>
417
- <tr>
418
- <th style="text-align: center">录音文件</th>
419
- </tr>
420
- </thead>
421
- <tbody>
422
- <tr>
423
- <td style="margin: auto;text-align: center">
424
- <div class="container" style="max-width: 500px;background: #FFFFFF">
425
- <a class="button_spacing button_search-1"
426
- :download="item.f_user_name+'-'+item.f_check_type+'-'+'录音文件.arm'"
427
- :href="'rs/image/file/'+item.f_recording1_path">录音下载</a>
428
- </div>
429
- </td>
430
- </tr>
431
- </tbody>
432
- </table>
433
- </div>
434
- </div>
435
- <div class style="width: 1%;height: 100%;background-color: #F1F8FF;float: left;"></div>
436
- <div class="col-md-6" style="height: 100%;overflow: scroll">
437
- <div style="width: 95%;margin-left: 5%">
438
- <table class="table table-striped table-bordered" v-for="config in deviceconfig2" style="margin-top: 35px">
439
- <thead v-show="!(config.checkname!='燃气表'&&paperdata.f_entry_status!='入户')">
440
- <tr>
441
- <th style="text-align: center">{{ config.checkname }}</th>
442
- </tr>
443
- </thead>
444
- <tbody v-show="!(config.checkname!='燃气表'&&paperdata.f_entry_status!='入户')">
445
- <tr v-for="dev in config.items">
446
- <td v-if="dev.type!='text' && dev.isshow != false">
447
- <div class="row">
448
- <div class="col-md-8" style="text-align: center;">
449
- <label>
450
- <button-link type="button" class="btn btn-link" @click="showpicture(config.checkname,dev.lname)"
451
- :style="isred(config.checkname,dev.lname)?'color:red':'color:black'">
452
- {{ dev.lname }}
453
- </button-link>
454
- </label>
455
- </div>
456
- <div class="col-md-4" style="text-align: center">
457
- <label style="font-weight: normal"
458
- v-if="dev.type!='picture'">{{
459
- getDeviceValue(config.checkname, dev.lname) ? getDeviceValue(config.checkname, dev.lname) : '无'
460
- }}</label>
461
- <label style="font-weight: normal" v-if="dev.type=='picture'">
462
- <div v-show="getDevicePath(config.checkname,dev.lname)">
463
- <button-link style="color: black" type="button" class="btn btn-link"
464
- @click="showpath(getDevicePath(config.checkname,dev.lname),dev.lname)">查看照片
465
- </button-link>
466
- </div>
467
- <div v-show="!getDevicePath(config.checkname,dev.lname)">无照片</div>
468
- </label>
469
- </div>
470
- </div>
471
- </td>
472
- <td v-if="dev.type==='text' && dev.isshow != false">
473
- <label style="width: 100%;text-align: center">{{ dev.lname }}</label>
474
- </td>
475
- </tr>
476
- </tbody>
477
- </table>
478
- <div v-show="showButton">
479
- <button class="button_spacing button_search" @click="auditSuccesss()">通过</button>
480
- <button class="button_spacing button_search" @click="auditFail()">不通过</button>
481
- </div>
482
- </div>
483
- </div>
484
-
485
- </div>
486
- </div>
487
- <div v-show="false">
488
- <div class="container-fluid" id="toPdf" style="overflow: scroll">
489
- <div class="row">
490
- <div style="margin-right: 2%;margin-left: 2%;height: 100%;overflow: scroll">
491
- <div style="width: 100%;margin: auto">
492
- <table class="table table-striped table-bordered" style="margin-bottom: 6px;margin-top: 35px">
493
- <thead>
494
- <tr>
495
- <th colspan="6" style="text-align: center">用户基本信息</th>
496
- </tr>
497
- </thead>
498
- <tbody>
499
- <tr>
500
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">用户编号:</td>
501
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
502
- paperdata.f_userinfo_code
503
- }}
504
- </td>
505
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">用户名称:</td>
506
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_user_name }}</td>
507
- </tr>
508
- <tr>
509
- <td style="text-align: center;border: #E9E9E9 solid 1px">证件号码:</td>
510
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_idnumber }}</td>
511
- <td style="text-align: center;border: #E9E9E9 solid 1px">用户类型:</td>
512
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_check_type }}</td>
513
- </tr>
514
- <tr>
515
- <td style="text-align: center;border: #E9E9E9 solid 1px">用户电话:</td>
516
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_user_phone }}</td>
517
- <td style="text-align: center;border: #E9E9E9 solid 1px">区 / 县:</td>
518
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_slice_area }}</td>
519
- </tr>
520
- <tr>
521
- <td style="text-align: center;border: #E9E9E9 solid 1px">街 道:</td>
522
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_street }}</td>
523
- <td style="text-align: center;border: #E9E9E9 solid 1px">楼 号:</td>
524
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_building }}</td>
525
- </tr>
526
- <tr>
527
- <td style="text-align: center;border: #E9E9E9 solid 1px">单 元:</td>
528
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_unit }}</td>
529
- <td style="text-align: center;border: #E9E9E9 solid 1px">楼 层:</td>
530
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_floor }}</td>
531
- </tr>
532
- <tr>
533
- <td style="text-align: center;border: #E9E9E9 solid 1px">门 牌 号 :</td>
534
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_room }}</td>
535
- <td style="text-align: center;border: #E9E9E9 solid 1px">用户性质:</td>
536
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_userproperties }}</td>
537
- </tr>
538
- <tr>
539
- <td style="text-align: center;border: #E9E9E9 solid 1px">备注信息:</td>
540
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_comments }}</td>
541
- <td style="text-align: center;border: #E9E9E9 solid 1px">小区名称:</td>
542
- <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_residential_area }}</td>
543
- </tr>
544
- <tr>
545
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px">详细住址:</td>
546
- <td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_address }}</td>
547
- </tr>
548
- </tbody>
549
- </table>
550
- <table class="table table-striped table-bordered" style="margin-top: 40px">
551
- <thead>
552
- <tr>
553
- <th colspan="6" style="text-align: center">设备信息</th>
554
- </tr>
555
- </thead>
556
- <tbody>
557
- <template v-for=" item in userdevice">
558
- <tr >
559
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">设备名称:</td>
560
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_devices_type }}</td>
561
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">设备型号:</td>
562
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_brand }}</td>
563
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">生产日期:</td>
564
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_make_date }}</td>
565
- </tr>
566
- <tr >
567
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">到期时间:</td>
568
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_expire_date }}</td>
569
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">购买方式:</td>
570
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.WatchPurchase }}</td>
571
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">安装方式:</td>
572
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_install_type }}</td>
573
- </tr>
574
- </template>
575
- </tbody>
576
- </table>
577
- <table class="table table-striped table-bordered" style="margin-top: 40px"
578
- v-show="paperdata.f_entry_status=='入户'">
579
- <thead>
580
- <tr>
581
- <th colspan="4" style="text-align: center">用户安检概况</th>
582
- </tr>
583
- </thead>
584
- <tbody>
585
- <tr>
586
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">到达时间:</td>
587
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_onsite_time }}</td>
588
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">离开时间:</td>
589
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
590
- paperdata.f_offsite_time
591
- }}
592
- </td>
593
- </tr>
594
- <tr>
595
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">入户状态:</td>
596
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
597
- paperdata.f_entry_status
598
- }}
599
- </td>
600
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">燃气使用:</td>
601
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_usegas }}</td>
602
- </tr>
603
- <tr>
604
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">用户满意度:</td>
605
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">{{
606
- paperdata.f_client_evaluation
607
- }}
608
- </td>
609
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">安检结果:</td>
610
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;"
611
- :style="{'color':ajresult=='有隐患'?'red':''}">{{ ajresult }}
612
- </td>
613
- </tr>
614
- <tr>
615
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">备注:</td>
616
- <td colspan="3"
617
- style="text-align: center;border: #E9E9E9 solid 1px;word-wrap:break-word;word-break:break-all;width:87%">
618
- {{ paperdata.f_repair_approved_note }}
619
- </td>
620
- </tr>
621
- <tr>
622
- <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">隐患详情:</td>
623
- <td colspan="3"
624
- style="text-align: center;border: #E9E9E9 solid 1px;word-wrap:break-word;word-break:break-all;width:87%">
625
- <span v-for="deviceCollect in deviceCollects">
626
- <span class="li-font">
627
- {{ deviceCollect.name }}:{{ deviceCollect.value }}&nbsp;&nbsp;&nbsp;
628
- </span>
629
- <br>
630
- <span v-if="deviceCollect.value == '有隐患'">
631
- <lable>
632
- 隐患:
633
- </lable>
634
- <span v-for="val in deviceCollect.devices">
635
- {{ val }}
636
- </span><br>
637
- </span>
638
-
639
- </span>
640
- </td>
641
- </tr>
642
-
643
- </tbody>
644
- </table>
645
- <table class="table table-striped table-bordered" style="margin-top: 40px"
646
- v-show="paperdata.f_entry_status!='入户'">
647
- <thead>
648
- <tr>
649
- <th colspan="4" style="text-align: center">用户安检概况</th>
650
- </tr>
651
- </thead>
652
- <tbody>
653
- <tr>
654
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">到达时间:</td>
655
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_onsite_time }}</td>
656
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">离开时间:</td>
657
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
658
- paperdata.f_offsite_time
659
- }}
660
- </td>
661
- </tr>
662
- <tr>
663
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">入户状态:</td>
664
- <td colspan="2" style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">
665
- {{ paperdata.f_entry_status }}
666
- </td>
667
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">
668
- <button-link style="color: black" type="button" class="btn btn-link" @click="showpicture2()">
669
- {{ dev.lname }}
670
- 查看{{ data.f_entry_status }}照片
671
- </button-link>
672
- </td>
673
- </tr>
674
-
675
- </tbody>
676
- </table>
677
- <table class="table table-striped table-bordered" style="margin-top: 40px"
678
- v-show="item.f_no_checkplan == '复检'">
679
- <thead>
680
- <tr>
681
- <th colspan="4" style="text-align: center">上次安检情况</th>
682
- </tr>
683
- </thead>
684
- <tbody>
685
- <tr>
686
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">上次安检到达时间:</td>
687
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
688
- lastCheckData.f_onsite_time
689
- }}
690
- </td>
691
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">上次安检离开时间:</td>
692
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
693
- lastCheckData.f_offsite_time
694
- }}
695
- </td>
696
- </tr>
697
- <tr>
698
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">上次安检员:</td>
699
- <td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">
700
- {{ lastCheckData.f_checker_name }}
701
- </td>
702
- </tr>
703
- <tr>
704
- <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">安检结果:</td>
705
- <td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">
706
- {{ lastCheckData.f_defect_text }}
707
- </td>
708
- </tr>
709
-
710
- </tbody>
711
- </table>
712
- <table class="table table-striped table-bordered" style="margin-top: 35px"
713
- v-show="showPdfImg && paperdata.f_entry_status=='入户' && ajresult=='有隐患'">
714
- <thead>
715
- <tr>
716
- <th style="text-align: center">隐患照片</th>
717
- </tr>
718
- </thead>
719
- <tbody>
720
- <tr>
721
- <td style="margin: auto;text-align: center">
722
- <div class="container" style="max-width: 550px;background: #FFFFFF">
723
- <div class="img" v-for="img in deviceImgs">
724
- <img-self-plus :list="deviceCollect.imgs " :src="img.f_overall_path" style="float: left"
725
- width="150"
726
- height="200"></img-self-plus>
727
- </div>
728
- </div>
729
-
730
-
731
- </td>
732
-
733
- </tr>
734
- </tbody>
735
- </table>
736
- <table class="table table-striped table-bordered" style="margin-top: 35px"
737
- v-show="paperdata.f_entry_status=='入户'">
738
- <thead>
739
- <tr>
740
- <th style="text-align: center">总体安检照片</th>
741
- </tr>
742
- </thead>
743
- <tbody>
744
- <tr>
745
- <td style="margin: auto;text-align: center">
746
- <div class="container" style="max-width: 550px;background: #FFFFFF">
747
- <div class="img" v-for="img in paperdata.f_overall_imgs">
748
- <img-self-plus :list="paperdata.f_overall_imgs " :src="img.f_overall_path" style="float: left"
749
- width="150"
750
- height="200"></img-self-plus>
751
- </div>
752
- </div>
753
-
754
-
755
- </td>
756
-
757
- </tr>
758
- </tbody>
759
- </table>
760
- <table class="table table-striped table-bordered" style="width: 100%"
761
- v-show="paperdata.f_entry_status=='入户'">
762
- <thead>
763
- <tr>
764
- <th style="text-align: center">用户签名照片</th>
765
- </tr>
766
- </thead>
767
- <tbody>
768
- <tr>
769
- <td style="margin: auto;text-align: center">
770
- <div class="container" style="max-width: 500px;background: #FFFFFF">
771
- <div class="img" style="float: none">
772
- <img-self-plus :src="paperdata.f_sign_path" width="200" height="200"></img-self-plus>
773
- </div>
774
- </div>
775
- </td>
776
- <td style="margin: auto;text-align: center">
777
- <div class="container" style="max-width: 550px;background: #FFFFFF" v-if="f_user_path">
778
- <div class="img" style="float: none">
779
- <img-self-plus :src="'rs/image/file/'+f_user_path"
780
- width="200"
781
- height="200"></img-self-plus>
782
- </div>
783
- </div>
784
- </td>
785
- </tr>
786
- </tbody>
787
- </table>
788
- <table class="table table-striped table-bordered"
789
- v-show="paperdata.f_entry_status=='入户' && paperdata.f_defect_notified">
790
- <thead>
791
- <tr>
792
- <th style="text-align: center">安检通知书/隐患整改通知书</th>
793
- </tr>
794
- </thead>
795
- <tbody>
796
- <tr>
797
- <td style="margin: auto;text-align: center">
798
- <div class="container" style="max-width: 500px;background: #FFFFFF">
799
- <div class="img" style="float: none">
800
- <img-self-plus :src="paperdata.f_notified_path" width="486" height="300"></img-self-plus>
801
- </div>
802
- </div>
803
- </td>
804
- </tr>
805
- </tbody>
806
- </table>
807
- <table class="table table-striped table-bordered"
808
- v-show="paperdata.f_entry_status=='入户'&& paperdata.f_video_path">
809
- <thead>
810
- <tr>
811
- <th style="text-align: center">安检视频</th>
812
- </tr>
813
- </thead>
814
- <tbody>
815
- <tr>
816
- <td style="margin: auto;text-align: center">
817
- <div class="container" style="max-width: 500px;background: #FFFFFF">
818
- <video width="320" height="200" controls v-if="paperdata.f_video_path">
819
- <source :src="paperdata.f_video_path" type="video/mp4">
820
- </video>
821
- </div>
822
- </td>
823
- </tr>
824
- </tbody>
825
- </table>
826
- <table class="table table-striped table-bordered"
827
- v-show="item.f_recording1_path">
828
- <thead>
829
- <tr>
830
- <th style="text-align: center">录音文件</th>
831
- </tr>
832
- </thead>
833
- <tbody>
834
- <tr>
835
- <td style="margin: auto;text-align: center">
836
- <div class="container" style="max-width: 500px;background: #FFFFFF">
837
- <a class="button_spacing button_search-1"
838
- :download="item.f_user_name+'-'+item.f_check_type+'-'+'录音文件.arm'"
839
- :href="'rs/image/file/'+item.f_recording1_path">录音下载</a>
840
- </div>
841
- </td>
842
- </tr>
843
- </tbody>
844
- </table>
845
- </div>
846
- </div>
847
- <div style="margin-right: 2%;margin-left: 2%;height: 100%;overflow: scroll">
848
- <div style="width: 95%;margin-left: 5%">
849
- <table class="table table-striped table-bordered" v-for="config in deviceconfig2"
850
- style="margin-top: 35px">
851
- <thead v-show="!(config.checkname!='燃气表'&&paperdata.f_entry_status!='入户')">
852
- <tr>
853
- <th style="text-align: center">{{ config.checkname }}</th>
854
- </tr>
855
- </thead>
856
- <tbody v-show="!(config.checkname!='燃气表'&&paperdata.f_entry_status!='入户')">
857
- <tr v-for="dev in config.items">
858
- <td v-if="dev.type!='text' && dev.isshow != false">
859
- <div class="row">
860
- <div class="col-md-8" style="text-align: center;">
861
- <label>
862
- <button-link type="button" class="btn btn-link"
863
- @click="showpicture(config.checkname,dev.lname)"
864
- :style="isred(config.checkname,dev.lname)?'color:red':'color:black'">
865
- {{ dev.lname }}
866
- </button-link>
867
- </label>
868
- </div>
869
- <div class="col-md-4" style="text-align: center">
870
- <label style="font-weight: normal"
871
- v-if="dev.type!='picture'">{{
872
- getDeviceValue(config.checkname, dev.lname) ? getDeviceValue(config.checkname, dev.lname) : '无'
873
- }}</label>
874
- <label style="font-weight: normal" v-if="dev.type=='picture'">
875
- <div v-show="getDevicePath(config.checkname,dev.lname)">
876
- <button-link style="color: black" type="button" class="btn btn-link"
877
- @click="showpath(getDevicePath(config.checkname,dev.lname),dev.lname)">查看照片
878
- </button-link>
879
- </div>
880
- <div v-show="!getDevicePath(config.checkname,dev.lname)">无照片</div>
881
- </label>
882
- </div>
883
- </div>
884
- </td>
885
- <td v-if="dev.type==='text' && dev.isshow != false">
886
- <label style="width: 100%;text-align: center">{{ dev.lname }}</label>
887
- </td>
888
- </tr>
889
- </tbody>
890
- </table>
891
- </div>
892
- </div>
893
-
894
- </div>
895
- </div>
896
- </div>
897
- </div>
898
- <modal :show.sync="imgshow" v-ref:modal backdrop="true">
899
- <header slot="modal-header" class="modal-header">
900
- {{ picturename }}
901
- </header>
902
- <article slot="modal-body" class="modal-body">
903
- <div class="from-group">
904
- <div class="row">
905
- <div class="col-md-6">
906
- <img-self-plus v-if="showimg1" :src="showimg1" width="240" height="300"></img-self-plus>
907
- </div>
908
- <div class="col-md-6">
909
- <img-self-plus v-if="showimg2" :src="showimg2" width="240" height="300"></img-self-plus>
910
- </div>
911
- <div class="col-md-6" v-for="item in otherDarginShowImgs">
912
- <img-self-plus v-if="item.path" :src="item.path" width="240" height="300"></img-self-plus>
913
- </div>
914
- </div>
915
- </div>
916
- </article>
917
- <footer slot="modal-footer" class="modal-footer" v-show="false">
918
- <button type="button" class="btn btn-success" @click='imgclose'>关闭</button>
919
- </footer>
920
- </modal>
921
- <modal :show.sync="imgshow2" v-ref:modal backdrop="true">
922
- <header slot="modal-header" class="modal-header">
923
- {{ paperdata.f_entry_status }}照片
924
- </header>
925
- <article slot="modal-body" class="modal-body">
926
- <div class="from-group">
927
- <div class="row">
928
- <div class="col-md-6">
929
- <img-self-plus v-if="this.paperdata.f_entry_status=='到访不遇'&& this.paperdata.f_noanswer_path" :src="showimg3"
930
- width="282"
931
- height="400"></img-self-plus>
932
- </div>
933
- <div class="col-md-6">
934
- <img-self-plus v-if="this.paperdata.f_entry_status=='到访不遇'&& this.paperdata.f_noanswer1_path"
935
- :src="showimg5" width="282"
936
- height="400"></img-self-plus>
937
- </div>
938
- <div class="col-md-6">
939
- <img-self-plus v-if="this.paperdata.f_entry_status=='到访不遇'&& this.paperdata.f_noanswer2_path"
940
- :src="showimg6" width="282"
941
- height="400"></img-self-plus>
942
- </div>
943
- <div class="col-md-6">
944
- <img-self-plus v-if="this.paperdata.f_entry_status=='拒检' && this.paperdata.f_rejectcheck_path"
945
- :src="showimg4" width="282"
946
- height="400"></img-self-plus>
947
- </div>
948
- <div class="col-md-6">
949
- <img-self-plus v-if="this.paperdata.f_entry_status=='拒检' && this.paperdata.f_rejectcheck1_path"
950
- :src="showimg7" width="282"
951
- height="400"></img-self-plus>
952
- </div>
953
- <div class="col-md-6">
954
- <img-self-plus v-if="this.paperdata.f_entry_status=='拒检' && this.paperdata.f_rejectcheck2_path"
955
- :src="showimg8" width="282"
956
- height="400"></img-self-plus>
957
- </div>
958
- </div>
959
- </div>
960
- </article>
961
- <footer slot="modal-footer" class="modal-footer" v-show="false">
962
- <button type="button" class="btn btn-success" @click='imgclose'>关闭</button>
963
- </footer>
964
- </modal>
965
- <modal :show.sync="showModel" :width="'50%'" :backdrop="false">
966
- <div slot="modal-header" class="modal-header">
967
- <h4 class="modal-title">
968
- 安检审核备注
969
- </h4>
970
- </div>
971
- <div slot="modal-body" class="modal-body">
972
- <div class="row">
973
- <div class="form-group col-sm-4">
974
- <label class="font_normal_body">审核备注:</label>
975
- <textarea v-model="message"></textarea>
976
- </div>
977
- </div>
978
- </div>
979
- <div slot="modal-footer" class="modal-footer" style="text-align: center">
980
- <button class="button_search" style="margin-right: 15px" @click="auditFailOK()">确定</button>
981
- <button class="button_search" style="margin-right: 15px" @click="auditFailCancel()">取消</button>
982
- </div>
983
- </modal>
984
- </template>
985
-
986
- <script>
987
- import html2pdf from 'html2pdf.js'
988
- import ObjConfig from '../../../utils/GerJsonObjectConfig'
989
- import RadioGroup from 'vue-client/src/vue-strap/src/radioGroup'
990
- import Radio from 'vue-client/src/vue-strap/src/radioBtn'
991
- import Vue from 'vue'
992
- import * as Util from '../../Util'
993
- import {jsonSort} from '../../../utils/LdapHelper'
994
- import {HttpResetClass} from "vue-client";
995
- let asyncReady = async function (self) {
996
- // 获取配置信息
997
- try {
998
- let res = await new HttpResetClass().load('get','/api/af-safecheck/vue',null, {resolveMsg: null, rejectMsg: null})
999
- self.delConfigKey(res.data)
1000
- Vue.config.safecheck=res.data
1001
- console.log('获取配置结果===', res.data)
1002
- } catch (error) {
1003
- // 忽略704,文件找不到异常R
1004
- if (error.status !== 704) {
1005
- throw error
1006
- }
1007
- }
1008
- }
1009
- export default {
1010
- title: '安检单',
1011
- props: ['f_plan_id', 'item', 'role','gotoitem'],
1012
- data() {
1013
- return {
1014
- f_user_path:'',
1015
- message: '',
1016
- showButton: false,
1017
- showModel: false,
1018
- data: {
1019
- f_devices: [],
1020
- f_defect_content: ''
1021
- },
1022
- showPdfDownload: this.$appdata.getSingleValue('安检结果pdf下载') ? this.$appdata.getSingleValue('安检结果pdf下载') : false,
1023
- showPdfImg: this.$appdata.getSingleValue('安检结果pdf展示隐患照片') ? this.$appdata.getSingleValue('安检结果pdf展示隐患照片') : false,
1024
- lastCheckData: {},
1025
- paperdata: {},
1026
- picturename: '隐患照片',
1027
- defectDevice: {},
1028
- hasDevice: false,
1029
- deviceCollect: {},
1030
- deviceCollects: [],
1031
- deviceImgs:[],
1032
- isshow: false,
1033
- ajresult: '',
1034
- loading: true,
1035
- imgshow: false,
1036
- imgshow2: false,
1037
- isUpload: false,
1038
- livedispose: '',
1039
- showimg1: '',
1040
- showimg2: '',
1041
- showimg3: '',
1042
- showimg4: '',
1043
- showimg5: '',
1044
- showimg6: '',
1045
- showimg7: '',
1046
- showimg8: '',
1047
- hiddenDangerImgNumber: 0, //配置项中隐患照片数
1048
- otherDarginShowImgs: [],//其他隐患图片
1049
- startClick: false, //开始安检按钮是否可点击
1050
- isStrat: false, //是否开始安检
1051
- checkResult: {},//查询结果
1052
- newcheckResult: {},
1053
- timer: null,
1054
- showModal: false,
1055
- pic_to_be_viewed: '',
1056
- showBack: true,
1057
- devices: [],
1058
- devicesAll: [],
1059
- configAJ: [],
1060
- configRQ: [],
1061
- deviceconfig: {},
1062
- newConfig: '',
1063
- deviceconfig2: [],
1064
- f_devices: [],
1065
- config: {
1066
- "燃气表": {
1067
- "checkmust": true,
1068
- "index": 1,
1069
- "items": {
1070
- "基表编号": {"index": 1, "type": "string", "readonly": true},
1071
- "气表型号": {"index": 2, "type": "string", "readonly": true},
1072
- "气表品牌": {"index": 3, "type": "string", "readonly": true},
1073
- "表向": {"index": 4, "type": "string", "readonly": true},
1074
- "初始表底": {"index": 5, "type": "number", "isshow": false, "readonly": true},
1075
- "上期表读数": {"index": 6, "type": "number", "readonly": true, isshow: false},
1076
- "累购气量": {"index": 7, "type": "number", "readonly": true},
1077
- "已用气量": {"index": 8, "type": "number", "checkmust": false},//基表数
1078
- "剩余气量": {"index": 9, "type": "number", "checkmust": false},//累购-已用
1079
- //显示屏数 --实际剩余气量
1080
- "气量异常差值": {"index": 10, "type": "number", "readonly": true},
1081
- "表箱号": {"index": 11, "type": "string", "readonly": true},
1082
- "燃气表照片": {"index": 12, "type": "picture", "checkmust": false},
1083
- }
1084
- // 注意,配置项的index必须与上面的固定配置保持'顺序'
1085
- }
1086
- },
1087
- //金额
1088
- config2: {
1089
- "燃气表": {
1090
- "checkmust": true,
1091
- "index": 1,
1092
- "items": {
1093
- "基表编号": {"index": 1, "type": "string", "readonly": true},
1094
- "气表型号": {"index": 2, "type": "string", "readonly": true},
1095
- "气表品牌": {"index": 3, "type": "string", "readonly": true},
1096
- "表向": {"index": 4, "type": "string", "readonly": true},
1097
- "初始表底": {"index": 5, "type": "number", "isshow": false, "readonly": true},
1098
- "上期表读数": {"index": 6, "type": "number", "readonly": true, isshow: false},
1099
- "累购金额": {"index": 7, "type": "number", "readonly": true},
1100
- "已用金额": {"index": 8, "type": "number", "checkmust": false},
1101
- //显示屏数 --实际剩余气量
1102
- "剩余金额": {"index": 9, "type": "number", "checkmust": false},
1103
- "金额异常差值": {"index": 10, "type": "number", "readonly": true},
1104
- "表箱号": {"index": 11, "type": "string", "readonly": true},
1105
- "燃气表照片": {"index": 12, "type": "picture", "checkmust": false},
1106
- }
1107
- }
1108
- },
1109
- userdevice:[]
1110
- }
1111
- },
1112
- components: {
1113
- RadioGroup,
1114
- Radio,
1115
- },
1116
- computed: {
1117
- isRecodrDownloadBtn() {
1118
- // 投诉单下派还是处理
1119
- let res = this.$appdata.getSingleValue('无限制录音');
1120
- if (res == 'true') {
1121
- return true;
1122
- } else {
1123
- return false;
1124
- }
1125
- },
1126
- selector: {
1127
- get() {
1128
- return 'paper-state'
1129
- },
1130
- set(val) {
1131
- if (this.isStrat) {
1132
- this.$goto(val, {userinfo: this.data}, 'paper-router')
1133
- } else {
1134
- this.$showMessage('未开始安检!')
1135
- }
1136
- }
1137
- },
1138
- actionEnabled: {
1139
- get() {
1140
- return this.role == 'inspect'
1141
- }
1142
- }
1143
- },
1144
- methods: {
1145
- getuserinfodevice(){
1146
- new HttpResetClass().load('POST', `/af-telephone/rs/sql/tel_singleTable_OrderBy`, {
1147
- data: {
1148
- items: '*',
1149
- tablename: 't_devices',
1150
- condition: `f_userinfo_id = '${this.item.f_userinfoid}'`,
1151
- orderitem: 'id'
1152
- }
1153
- }, {resolveMsg: null, rejectMsg:null}).then((res) => {
1154
- this.userdevice = res.data
1155
- })
1156
- },
1157
- delConfigKey(obj){
1158
- // 从琉璃中获取的配置中会包含 $开头的一些额外描述新的key。为了兼容v3的代码逻辑在此函数中去掉
1159
- Object.keys(obj).forEach(key =>{
1160
- Object.keys(obj[key]).forEach(col => {
1161
- // 检查键是否以$开头
1162
- if (col.startsWith('$')) {
1163
- // 使用delete操作符删除键
1164
- delete obj[key][col];
1165
- }
1166
- })
1167
- })
1168
- },
1169
- exportToPDF() {
1170
- const element = document.getElementById('toPdf') // 替换为您要导出的页面元素的ID
1171
- html2pdf(element)
1172
- },
1173
- showAudit() {
1174
- var audit = this.$appdata.getSingleValue('安检审核');
1175
- if (audit == '是' && (this.item.f_approved == '未审核' || !this.item.f_approved)) {
1176
- this.showButton = true
1177
- }
1178
- },
1179
- //安检审核成功
1180
- auditSuccesss() {
1181
- this.loading = true;
1182
- var reqdata = {
1183
- audit_result: '通过',
1184
- operator: "success",
1185
- audit_time: Util.getNowDate(),
1186
- user_name: this.$login.f.name,
1187
- id: this.item.id,
1188
- f_check_item_id: this.item.f_check_item_id
1189
- }
1190
- new HttpResetClass().load('POST', '/api/af-safecheck/logic/updateAafeAudit', {data: reqdata}, {
1191
- resolveMsg: '安检审核成功!',
1192
- rejectMsg: '安检审核出错!'
1193
- }).then((res) => {
1194
- if (res.data.code == 200) {
1195
- this.loading = false;
1196
- this.$emit('showback')
1197
- }
1198
- })
1199
- },
1200
- auditFail() {
1201
- this.showModel = true;
1202
- },
1203
- auditFailOK() {
1204
-
1205
- this.loading = true;
1206
- var reqdata = {
1207
- message: this.message,
1208
- audit_result: '不通过',
1209
- operator: "fail",
1210
- audit_time: Util.getNowDate(),
1211
- user_name: this.$login.f.name,
1212
- id: this.item.id,
1213
- f_check_item_id: this.item.f_check_item_id
1214
- }
1215
- new HttpResetClass().load('POST', '/api/af-safecheck/logic/updateAafeAudit', {data: reqdata}, {
1216
- resolveMsg: '安检审核成功!',
1217
- rejectMsg: '安检审核出错!'
1218
- }).then((res) => {
1219
- if (res.data.code == 200) {
1220
- this.loading = false;
1221
- this.message = '';
1222
- this.showModel = false;
1223
- this.$emit('showback')
1224
- }
1225
- })
1226
- },
1227
- auditFailCancel() {
1228
- this.showModel = false;
1229
- this.message = '';
1230
- },
1231
-
1232
- devicesCollect() {
1233
- //tag
1234
- //tag)
1235
- //tag)
1236
- //tag
1237
- this.deviceCollects = []
1238
- this.deviceImgs = []
1239
- let checkResult = '正常'
1240
- this.result = '正常'
1241
- let codata = JSON.parse(JSON.stringify(this.data))
1242
- //tag)
1243
- for (let device in this.data) {
1244
- let f_device_type
1245
- if (device.startsWith("device")) {
1246
- for (let item in this.data[device]) {
1247
- if (this.data[device].length > 1) {
1248
- let j = Number.parseInt(item) + 1
1249
- f_device_type = `${this.data[device][item].f_device_type}${j}`
1250
- } else {
1251
- f_device_type = this.data[device][item].f_device_type
1252
- }
1253
- // //tag
1254
- let deviceelse = []
1255
- let deviceInfos = []
1256
-
1257
- for (let i in this.data[device][item].f_items) {
1258
- let defects = ''
1259
-
1260
- let items = this.data[device][item].f_items[i]
1261
-
1262
-
1263
- if ((items.type === 'selector' || items.type === 'radio' || items.type === 'checkbox' || items.type === 'picture') && items.f_item_value != null && items.f_item_value instanceof Array) {
1264
- for (let i in items.f_item_value) {
1265
- let f_item_value = items.f_item_value[i]
1266
-
1267
- //tag)
1268
- //tag)
1269
- //tag)
1270
- //tag)
1271
-
1272
- if (!this.config[this.data[device][item].f_device_type].items[items.f_item_name] && (items.isdefect && (items.isdefect == 'true' || items.isdefect == true))) {
1273
- continue
1274
- }
1275
- /*if(items.f_is_defect != true && items.f_is_defect != 'true'){
1276
- continue
1277
- }*/
1278
- if (items.f_is_defect == 'true' || items.f_is_defect == true) {
1279
- checkResult = '有隐患'
1280
- this.result = '有隐患'
1281
- defects = `${defects}:${f_item_value}/`
1282
- }
1283
- /*let options = this.config[this.data[device][item].f_device_type].items[items.f_item_name].options
1284
- for (let option in options) {
1285
- if (options[option].data == f_item_value) {
1286
- if (options[option].isdefect == 'true' || options[option].isdefect == true) {
1287
- checkResult = '有隐患'
1288
- this.result = '有隐患'
1289
- defects = `${defects}:${options[option].data}/`
1290
- // let level = options[option].level
1291
- }
1292
- }
1293
- }*/
1294
- //tag)
1295
- }
1296
- if (defects != '') {
1297
- console.log('有隐患items', items)
1298
- deviceInfos.push(`${items.f_item_name}${defects.substring(0, defects.length - 1)}${items.f_else ? items.f_else : ''}`)
1299
- this.deviceImgs.push({f_overall_path:items.f_path})
1300
- }
1301
- } else if ((items.type === 'string' || items.type === 'number') && items.f_is_defect && items.f_item_value[0]) {
1302
- checkResult = '有隐患'
1303
- this.result = '有隐患'
1304
- deviceInfos.push(`${items.f_item_name}:${items.f_item_value[0]}`)
1305
- this.deviceImgs.push({f_overall_path:items.f_path})
1306
-
1307
- } else if (items.f_item_name == '金额异常差值') {
1308
- var deviation = this.$appdata.getSingleValue('金额异常差值允许误差')
1309
- //tag
1310
- if (parseFloat(items.f_item_value[0]).toString() != "NaN" && parseFloat(deviation).toString() != "NaN") {
1311
- if (parseFloat(items.f_item_value[0]) > parseFloat(deviation) || parseFloat(items.f_item_value[0]) < parseFloat(deviation) * -1) {
1312
- checkResult = '有隐患'
1313
- this.result = '有隐患'
1314
- deviceInfos.push(`${items.f_item_name}:${items.f_item_value[0]}`)
1315
- }
1316
- }
1317
- } else if (items.f_item_name == '气量异常差值') {
1318
- var deviation = this.$appdata.getSingleValue('气量异常差值允许误差')
1319
- //tag
1320
- if (parseFloat(items.f_item_value[0]).toString() != "NaN" && parseFloat(deviation).toString() != "NaN") {
1321
- if (parseFloat(items.f_item_value[0]) > parseFloat(deviation) || parseFloat(items.f_item_value[0]) < parseFloat(deviation) * -1) {
1322
- checkResult = '有隐患'
1323
- this.result = '有隐患'
1324
- deviceInfos.push(`${items.f_item_name}:${items.f_item_value[0]}`)
1325
- }
1326
- }
1327
- }
1328
- if (!this.config[this.data[device][item].f_device_type].items[items.f_item_name]) {
1329
- // console.log('this.config[this.data[device][item].f_device_type]', this.config[this.data[device][item].f_device_type])
1330
- // console.log('this.deviceconfig2', this.deviceconfig2)
1331
- for (let dev in this.deviceconfig2) {
1332
- if (this.deviceconfig2[dev].checkname == this.data[device][item].f_device_type) {
1333
- this.deviceconfig2[dev].items.push({
1334
- lname: items.f_item_name
1335
- })
1336
- }
1337
- }
1338
- }
1339
- //tag)
1340
- //tag
1341
- //tag
1342
- if (items.type === 'selector') {
1343
- items.selected = []
1344
- } else if (items.type === 'inputSelector') {
1345
- items.selected = ''
1346
- }
1347
- }
1348
-
1349
-
1350
- //tag
1351
- this.$set('deviceCollect.name', f_device_type)
1352
- this.$set('deviceCollect.value', checkResult)
1353
- this.$set('deviceCollect.devices', deviceInfos)
1354
- this.$set('deviceCollect.else', deviceelse)
1355
- console.log('deviceCollect.devices', this.deviceCollect.devices)
1356
- console.log('deviceCollect.else', this.deviceCollect.else)
1357
- console.log('deviceCollect.imgs', this.deviceCollect.imgs)
1358
- //tag)
1359
- if (this.deviceCollect.name) {
1360
- //tag
1361
- if(this.deviceCollect.value != '正常'){
1362
- this.deviceCollects.push(JSON.parse(JSON.stringify(this.deviceCollect)))
1363
- }
1364
- }
1365
-
1366
- checkResult = '正常'
1367
- this.deviceCollect = {}
1368
- }
1369
- }
1370
- }
1371
- if (this.deviceCollects.length > 0) {
1372
- this.hasDevice = true
1373
- }
1374
- this.deviceconfig2 = this.deviceconfig2.filter(row => {
1375
- return !(row.checkname == '$configProp' || row.checkname == '$globalProp');
1376
- })
1377
- this.ajresult = JSON.parse(this.data.f_defect_content).result
1378
- this.showimg3 = this.data.f_noanswer_path
1379
- this.showimg5 = this.data.f_noanswer1_path
1380
- this.showimg6 = this.data.f_noanswer2_path
1381
- this.showimg4 = this.data.f_rejectcheck_path
1382
- this.showimg7 = this.data.f_rejectcheck1_path
1383
- this.showimg8 = this.data.f_rejectcheck2_path
1384
- this.paperdata = this.data
1385
- this.f_user_path = this.paperdata.f_user_pictures ? JSON.parse(this.paperdata.f_user_pictures)[0].f_user_path : ''
1386
- this.loading = false
1387
- },
1388
- imgclose() {
1389
- this.imgshow = false
1390
- },
1391
- putDevices() {
1392
- ////tag
1393
- this.$set('data.approve', "true")
1394
- this.$set('data.writeback', "false")
1395
- if (Vue.config.safecheck.ApproveConfig != undefined) {
1396
- if (Vue.config.safecheck.ApproveConfig.approve != undefined) {
1397
- this.$set('data.approve', Vue.config.safecheck.ApproveConfig.approve)
1398
- }
1399
- if (Vue.config.safecheck.ApproveConfig.writeback != undefined) {
1400
- this.$set('data.writeback', Vue.config.safecheck.ApproveConfig.writeback)
1401
- }
1402
- if (Vue.config.safecheck.ApproveConfig.livedispose != undefined) {
1403
- this.livedispose = Vue.config.safecheck.ApproveConfig.livedispose
1404
- }
1405
- if (Vue.config.safecheck.ApproveConfig.hiddendanger != undefined) {
1406
- if (parseInt(Vue.config.safecheck.ApproveConfig.hiddendanger) >= 5) {
1407
- this.hiddenDangerImgNumber = 5
1408
- } else {
1409
- this.hiddenDangerImgNumber = parseInt(Vue.config.safecheck.ApproveConfig.hiddendanger)
1410
- }
1411
- }
1412
- }
1413
- //tag
1414
- //tag)
1415
- if (!this.item.f_safecheck_type && Vue.config.safecheck.SafecheckType && Vue.config.safecheck.SafecheckType['年度普检']) {
1416
- this.config = this.extend(this.config, Vue.config.safecheck[Vue.config.safecheck.SafecheckType['年度普检'][this.item.f_check_type]])
1417
- }else if (!this.item.f_safecheck_type && Vue.config.safecheck.SafecheckType && Vue.config.safecheck.SafecheckType['年度安检']){
1418
- this.config = this.extend(this.config, Vue.config.safecheck[Vue.config.safecheck.SafecheckType['年度安检'][this.item.f_check_type]])
1419
- }else if (Vue.config.safecheck.SafecheckType && Vue.config.safecheck[Vue.config.safecheck.SafecheckType[this.item.f_safecheck_type]]){
1420
- this.config = this.extend(this.config, Vue.config.safecheck[Vue.config.safecheck.SafecheckType[this.item.f_safecheck_type][this.item.f_check_type]])
1421
- }else {
1422
- if(this.item.f_check_type == '民用'){
1423
- this.config = this.extend(this.config, Vue.config.safecheck.DevicesConfig)
1424
- }else {
1425
- this.config = this.extend(this.config, Vue.config.safecheck.DevicesSetConfig)
1426
- }
1427
- }
1428
- //遍历安检项配置
1429
- for (let i in this.config) {
1430
- //取得安检项索引值
1431
- let n = this.config[i].index
1432
- this.devices[n - 1] = {device: i, n: n, checkmust: this.config[i].checkmust}
1433
- this.$set('data.' + 'device' + n, [])
1434
- let items = []
1435
- for (let it in this.config[i].items) {
1436
- //赋值下拉选项
1437
- if (this.config[i].items[it].type == 'selector') {
1438
- for (let op in this.config[i].items[it].options)
1439
- if (this.config[i].items[it].options[op].isdefault == true) {
1440
- items.push({
1441
- f_defect_level: this.config[i].items[it].options[op].level,
1442
- f_is_defect: this.config[i].items[it].options[op].isdefect,
1443
- f_item_name: it,
1444
- f_item_value: this.config[i].items[it].options[op].data,
1445
- f_path: "",
1446
- type: "selector"
1447
- })
1448
- }
1449
- }
1450
- }
1451
- n = n + 1
1452
- }
1453
-
1454
- },
1455
- showpath(val1, val2) {
1456
- //tag
1457
- //tag
1458
- if (val1) {
1459
- this.showimg1 = val1
1460
- this.picturename = val2
1461
- this.imgshow = true
1462
- }
1463
- },
1464
- showpicture(val1, val2) {
1465
- //tag
1466
- if (val2 == '气量异常差值' || val2 == '金额异常差值') {
1467
- return
1468
- }
1469
- for (let i = 0; i < this.devicesAll.length; i++) {
1470
- for (let j = 0; j < this.devicesAll[i].length; j++) {
1471
- if (this.devicesAll[i][j].f_device_type == val1) {
1472
- for (let k = 0; k < this.devicesAll[i][j].f_items.length; k++) {
1473
- if (this.devicesAll[i][j].f_items[k].f_item_name == val2) {
1474
- if (!this.devicesAll[i][j].f_items[k].f_is_defect) {
1475
- return false
1476
- } else {
1477
- this.showimg1 = this.devicesAll[i][j].f_items[k].f_path
1478
- this.showimg2 = this.devicesAll[i][j].f_items[k].f_second_path
1479
- this.otherDarginShowImgs = []
1480
- for (let l = 0; l < this.hiddenDangerImgNumber; l++) {
1481
- let img = {path: ''}
1482
- if (this.devicesAll[i][j].f_items[k]['f_p' + (l + 1) + '_path']) {
1483
- img.path = this.devicesAll[i][j].f_items[k]['f_p' + (l + 1) + '_path'] + '?' + Math.random()
1484
- this.otherDarginShowImgs.push(img)
1485
- }
1486
- }
1487
- this.picturename = '隐患照片'
1488
- this.imgshow = true
1489
- return true
1490
- }
1491
- }
1492
- }
1493
-
1494
- }
1495
- }
1496
- }
1497
- },
1498
- isred(val1, val2) {
1499
- //tag
1500
- if (val2 == '气量异常差值' || val2 == '金额异常差值') {
1501
- return
1502
- }
1503
- for (let i = 0; i < this.devicesAll.length; i++) {
1504
- for (let j = 0; j < this.devicesAll[i].length; j++) {
1505
- if (this.devicesAll[i][j].f_device_type == val1) {
1506
- for (let k = 0; k < this.devicesAll[i][j].f_items.length; k++) {
1507
- if (this.devicesAll[i][j].f_items[k].f_item_name == val2) {
1508
- if (!this.devicesAll[i][j].f_items[k].f_is_defect) {
1509
- return false
1510
- } else {
1511
- return true
1512
- }
1513
- }
1514
- }
1515
-
1516
- }
1517
- }
1518
- }
1519
- },
1520
- showpicture2() {
1521
- this.imgshow2 = true
1522
- },
1523
- getDeviceValue(val1, val2) {
1524
- let aa = ''
1525
- for (let i = 0; i < this.devicesAll.length; i++) {
1526
- for (let j = 0; j < this.devicesAll[i].length; j++) {
1527
- if (this.devicesAll[i][j].f_device_type == val1) {
1528
- for (let k = 0; k < this.devicesAll[i][j].f_items.length; k++) {
1529
- if (this.devicesAll[i][j].f_items[k].f_item_name == val2) {
1530
- if (this.devicesAll[i][j].f_items[k].f_item_lists[0]) {
1531
- for (let l = 0; l < this.devicesAll[i][j].f_items[k].f_item_lists.length; l++) {
1532
- let val = this.devicesAll[i][j].f_items[k].f_item_lists[l].f_item_value
1533
- aa += (val === null ? '空' : val) + ' '
1534
- }
1535
- return aa
1536
- }
1537
- }
1538
- }
1539
-
1540
- }
1541
- }
1542
- }
1543
-
1544
- },
1545
- getDevicePath(val1, val2) {
1546
- for (let i = 0; i < this.devicesAll.length; i++) {
1547
- for (let j = 0; j < this.devicesAll[i].length; j++) {
1548
- if (this.devicesAll[i][j].f_device_type == val1) {
1549
- for (let k = 0; k < this.devicesAll[i][j].f_items.length; k++) {
1550
- if (this.devicesAll[i][j].f_items[k].f_item_name == val2) {
1551
- return this.devicesAll[i][j].f_items[k].f_path
1552
- }
1553
- }
1554
-
1555
- }
1556
- }
1557
- }
1558
-
1559
- },
1560
- getDeviceAll() {
1561
- let keyall = Object.keys(this.data)
1562
- for (let i = 0; i < keyall.length; i++) {
1563
- //tag)
1564
- if ((keyall[i].startsWith('f_devices') || keyall[i].startsWith('devices')) && keyall[i] != 'deviceundefined') {
1565
- this.devicesAll.push(this.data[keyall[i]])
1566
- //tag
1567
- }
1568
- }
1569
- //tag
1570
- //tag)
1571
- this.devicesCollect()
1572
-
1573
- },
1574
-
1575
- back() {
1576
- if (this.role == 'inspect') {
1577
- if (!this.isStrat) {
1578
- this.$emit('showback')
1579
- return
1580
- } else {
1581
- this.savePaper(true).then(() => {
1582
- this.$emit('showback')
1583
- this.isStrat = false
1584
- })
1585
- }
1586
- } else {
1587
- if(this.gotoitem){
1588
- this.$back()
1589
- return
1590
- }
1591
- this.$emit('showback')
1592
- }
1593
- },
1594
- checkIsStart() {
1595
- alert('asdad')
1596
- return
1597
- },
1598
-
1599
- viewPic(fileName) {
1600
- //tag
1601
- if (this.role == 'view') {
1602
- if (!fileName.endsWith('nopic.png')) {
1603
- this.pic_to_be_viewed = fileName
1604
- this.showModal = true
1605
- }
1606
- } else {
1607
- HostApp.viewPic(fileName)
1608
- }
1609
- },
1610
- tick() {
1611
- this.timer = null
1612
- this.data.f_offsite_time = Util.toStandardTimeString()
1613
- this.timer = window.setTimeout(this.tick, 1000)
1614
- },
1615
- getRepairState() {
1616
- let repaired = true
1617
- this.data.f_defects.forEach((defect) => {
1618
- repaired = repaired & (defect.f_ratification == '已处理')
1619
- })
1620
- return repaired
1621
- },
1622
- verifyRepairDefects() {
1623
- this.data.f_repair_date = Util.toStandardTimeString()
1624
- this.data.f_repaired = this.getRepairState() ? '已修' : '在修'
1625
- },
1626
- genuineSave(saveOnly) {
1627
- HostApp.__this__.save(saveOnly)
1628
- if (!saveOnly)
1629
- HostApp.__this__.disableTimer()
1630
- HostApp.__callback__ = null
1631
- HostApp.__this__ = null
1632
- },
1633
- setUrgency() {
1634
- this.data.f_defect_urgency = 'Z'
1635
- let that = this
1636
- this.data.f_defects.forEach(function (defect) {
1637
- if (that.data.f_defect_urgency > defect.f_defect_level.charAt(0))
1638
- that.data.f_defect_urgency = defect.f_defect_level.charAt(0)
1639
- })
1640
- if (this.data.f_defect_urgency == 'Z')
1641
- this.data.f_defect_urgency = null
1642
- },
1643
- disableTimer() {
1644
- if (this.timer) {
1645
- window.clearTimeout(this.timer)
1646
- this.timer = null
1647
- }
1648
- },
1649
- loaded(paper) {
1650
- if (!paper.hasOwnProperty('id')) {
1651
- this.$showMessage("该安检单在手机上已经不存在,可能是卸载过程序。可以进入重新安检,或返回安检计划。")
1652
- this.init()
1653
- } else {
1654
- Util.booleanFilter(paper)
1655
- HostApp.__this__.$set('data', paper)
1656
- HostApp.__this__.$goto('paper-state', {}, 'paper-router')
1657
- // 如果打回重检则重新计时
1658
- //tag
1659
- if (HostApp.__this__.role == 'inspect'
1660
- && HostApp.__this__.data.f_approved
1661
- && HostApp.__this__.data.f_approved == '打回') {
1662
- //tag
1663
- HostApp.__this__.data.f_onsite_time = Util.toStandardTimeString()
1664
- HostApp.__this__.tick()
1665
- }
1666
- }
1667
- HostApp.__callback__ = null
1668
- HostApp.__this__ = null
1669
- },
1670
- S4() {
1671
- return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
1672
- },
1673
- init() {
1674
- this.data.f_noplan_item_id = this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4()
1675
- this.data.ename = Vue.user.ename
1676
- this.data.f_outlets = Vue.user.f_parentname
1677
- this.data.f_meetunit = Vue.user.orgpathnames
1678
- this.data.orgpathstr = Vue.user.orgpathstr
1679
- this.data.f_check_item_id = this.item.id
1680
- this.data.f_check_plan_id = this.f_plan_id
1681
- this.data.f_checker_id = Vue.user.id
1682
- this.data.f_checker_name = Vue.user.name
1683
- this.data.f_check_type = this.item.f_user_type
1684
- this.data.f_subcompany = this.item.f_subcompany
1685
- this.data.f_approved = this.item.f_approved
1686
- this.data.f_repair_approved = this.item.f_repair_approved
1687
- this.data.f_no_checkplan = this.item.f_no_checkplan
1688
- this.data.f_approved = this.item.f_approved
1689
- this.data.f_filialeid = this.item.f_filialeid
1690
- this.data.f_orgstr = this.item.f_orgstr
1691
- this.data.version = this.item.version
1692
- this.$set('data.f_meters', this.item.f_plan_meters)
1693
- this.$set('data.f_userinfo_code', this.item.f_userinfo_code)
1694
- // 安检状态
1695
- this.$set('data.f_entry_status', '入户')
1696
- this.$set('data.f_usegas', '已使用')
1697
- this.$set('data.f_state', this.item.f_state)
1698
- // 用户信息
1699
- this.$set('data.f_user_name', this.item.f_user_name)
1700
- this.$set('data.f_user_phone', this.item.f_user_phone)
1701
- this.$set('data.f_userinfoid', this.item.f_userinfoid)
1702
- this.$set('data.f_address', this.item.f_address)
1703
- this.$set('data.f_card_id', this.item.f_card_id)
1704
- this.$set('data.f_area', this.item.f_area)
1705
- this.$set('data.f_street', this.item.f_street)
1706
- this.$set('data.f_room', this.item.f_room)
1707
- this.$set('data.f_building', this.item.f_building)
1708
- this.$set('data.f_unit', this.item.f_unit)
1709
- this.$set('data.f_floor', this.item.f_floor)
1710
- this.$set('data.f_residential_area', this.item.f_residential_area)
1711
- this.$set('data.f_idnumber', this.item.f_idnumber)
1712
- this.$set('data.f_comments', this.item.f_comments)
1713
- this.$set('data.f_userproperties', this.item.f_userproperties)
1714
- // 处置方式
1715
- this.$set('data.f_no_gas_device', false)
1716
- this.$set('data.f_close_valve', false)
1717
- this.$set('data.f_unload_battery', false)
1718
- if (this.data.f_check_item_id == '' && this.item.f_no_checkplan == '无计划安检') {
1719
- this.data.f_check_item_id = this.data.f_noplan_item_id
1720
- }
1721
-
1722
- //房屋结构
1723
- // this.$set('data.f_room_style', '多层')
1724
- //供暖方式
1725
- // this.$set('data.f_heating_style', '热力公司集中供暖')
1726
- if (this.item.f_plan_meters) {
1727
- for (let de in this.devices) {
1728
- this.$set('data.device' + this.devices[de].n, [])
1729
- for (let i = 0; i < this.item.f_plan_meters.length; i++) {
1730
- if (this.item.f_plan_meters[i].f_meter_type) {
1731
- if (this.devices[de].device == "燃气表" && this.item.f_plan_meters[i].f_meter_type.indexOf('机表') > 0) {
1732
- delete this.config['燃气表']['items']['累计购气量']
1733
- this.data['device' + this.devices[de].n].push({
1734
- f_device_type: "燃气表",
1735
- f_items: [{
1736
- f_defect_level: null,
1737
- f_device_id: "",
1738
- f_is_defect: "",
1739
- f_item_name: "表品牌",
1740
- f_item_value: this.item.f_plan_meters[i].f_aliasname,
1741
- f_path: "",
1742
- type: "string"
1743
- },
1744
- {
1745
- f_defect_level: null,
1746
- f_device_id: "",
1747
- f_is_defect: "",
1748
- f_item_name: "位置",
1749
- f_item_value: this.item.f_plan_meters[i].f_weizhi,
1750
- f_path: "",
1751
- type: "selector"
1752
- },
1753
- {
1754
- f_defect_level: null,
1755
- f_device_id: "",
1756
- f_is_defect: "",
1757
- f_item_name: "表号",
1758
- f_item_value: this.item.f_plan_meters[i].f_meter_no,
1759
- f_path: "",
1760
- type: "number"
1761
- },
1762
- {
1763
- f_defect_level: null,
1764
- f_device_id: "",
1765
- f_is_defect: "",
1766
- f_item_name: "表封号",
1767
- f_item_value: this.item.f_plan_meters[i].f_metertitles,
1768
- f_path: "",
1769
- type: "number"
1770
- },
1771
- {
1772
- f_defect_level: null,
1773
- f_device_id: "",
1774
- f_is_defect: "",
1775
- f_item_name: "表型号",
1776
- f_item_value: this.item.f_plan_meters[i].f_diaphgram_size,
1777
- f_path: "",
1778
- type: "selector"
1779
- },
1780
- {
1781
- f_defect_level: null,
1782
- f_device_id: "",
1783
- f_is_defect: "",
1784
- f_item_name: "表底数",
1785
- f_item_value: this.item.f_plan_meters[i].f_prior_reading,
1786
- f_path: "",
1787
- type: "number"
1788
- }
1789
- ]
1790
- })
1791
- } else if (this.devices[de].device == "燃气表") {
1792
- delete this.config['燃气表']['items']['表底数']
1793
- this.data['device' + this.devices[de].n].push({
1794
- f_device_type: "燃气表",
1795
- f_items: [{
1796
- f_defect_level: null,
1797
- f_device_id: "",
1798
- f_is_defect: "",
1799
- f_item_name: "表品牌",
1800
- f_item_value: this.item.f_plan_meters[i].f_aliasname,
1801
- f_path: "",
1802
- type: "string"
1803
- },
1804
- {
1805
- f_defect_level: null,
1806
- f_device_id: "",
1807
- f_is_defect: "",
1808
- f_item_name: "位置",
1809
- f_item_value: this.item.f_plan_meters[i].f_weizhi,
1810
- f_path: "",
1811
- type: "selector"
1812
- },
1813
- {
1814
- f_defect_level: null,
1815
- f_device_id: "",
1816
- f_is_defect: "",
1817
- f_item_name: "表号",
1818
- f_item_value: this.item.f_plan_meters[i].f_meter_no,
1819
- f_path: "",
1820
- type: "number"
1821
- },
1822
- {
1823
- f_defect_level: null,
1824
- f_device_id: "",
1825
- f_is_defect: "",
1826
- f_item_name: "表封号",
1827
- f_item_value: this.item.f_plan_meters[i].f_metertitles,
1828
- f_path: "",
1829
- type: "number"
1830
- },
1831
- {
1832
- f_defect_level: null,
1833
- f_device_id: "",
1834
- f_is_defect: "",
1835
- f_item_name: "表型号",
1836
- f_item_value: this.item.f_plan_meters[i].f_diaphgram_size,
1837
- f_path: "",
1838
- type: "selector"
1839
- },
1840
- {
1841
- f_defect_level: null,
1842
- f_device_id: "",
1843
- f_is_defect: "",
1844
- f_item_name: "累计购气量",
1845
- f_item_value: this.item.f_plan_meters[i].f_prior_reading,
1846
- f_path: "",
1847
- type: "number"
1848
- }
1849
- ]
1850
- })
1851
- }
1852
- }
1853
- }
1854
- }
1855
- }
1856
-
1857
- this.$goto('paper-state', {}, 'paper-router')
1858
- },
1859
- extend(initalObj, finalObj) {
1860
- var obj = finalObj || {};
1861
- for (var i in initalObj) {
1862
- var prop = initalObj[i];
1863
-
1864
- // 避免相互引用对象导致死循环,如initalObj.a = initalObj的情况
1865
- if (prop === obj) {
1866
- continue;
1867
- }
1868
-
1869
- if (typeof prop === 'object') {
1870
- if (obj[i]) {
1871
- this.extend(obj[i], prop)
1872
- } else {
1873
- obj[i] = prop;
1874
- }
1875
- }
1876
- }
1877
- return obj;
1878
- },
1879
- //获取当前时间
1880
- getNowFormatDate() {
1881
- var date = new Date();
1882
- var seperator1 = "-";
1883
- var seperator2 = ":";
1884
- var month = date.getMonth() + 1;
1885
- var strDate = date.getDate();
1886
- if (month >= 1 && month <= 9) {
1887
- month = "0" + month;
1888
- }
1889
- if (strDate >= 0 && strDate <= 9) {
1890
- strDate = "0" + strDate;
1891
- }
1892
- var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
1893
- + " " + date.getHours() + seperator2 + date.getMinutes()
1894
- + seperator2 + date.getSeconds();
1895
- return currentdate;
1896
- }
1897
- },
1898
- ready() {
1899
- asyncReady(this).then(() => {
1900
- setTimeout(() => {
1901
- this.loading = false;
1902
- }, 10000)
1903
- this.getuserinfodevice()
1904
- this.putDevices()
1905
- this.showAudit()
1906
- this.newConfig = this.$appdata.getSingleValue('配置中心获取文件') ? this.$appdata.getSingleValue('配置中心获取文件') : '否';
1907
- if (this.item.f_state != '未检' || this.item.f_no_checkplan == '无计划安检' || this.item.f_no_checkplan == '复检') {
1908
- if (this.role != 'inspect') {
1909
- let that = this
1910
- let id
1911
- if (this.role == 'view') {
1912
- id = this.item.id
1913
- } else if (this.role == 'androidview') {
1914
- id = this.item.f_paper_id
1915
- }
1916
- this.$resetpost(`api/af-safecheck/logic/path_getCheckPaper`, {data: {id:id}}).then((respanse) => {
1917
- //tag
1918
- if (respanse.data.length != 0) {
1919
- // 包含 其它 特殊处理的数组
1920
- // 对应位置
1921
- that.data = Object.assign(that.data, respanse.data[0])
1922
- if (respanse.data[0].f_devices) {
1923
- for (let da in that.devices) {
1924
- that.$set('data.device' + that.devices[da].n, [])
1925
- }
1926
- respanse.data[0].f_devices.forEach((item) => {
1927
- for (let de in that.devices) {
1928
- if (that.devices[de].device == item.f_device_type) {
1929
- item.f_items.forEach((f_item) => {
1930
- //tag
1931
- //tag
1932
- let itemValues = []
1933
- f_item.f_item_lists.forEach((tempItem) => {
1934
- //tag
1935
- if (tempItem.f_item_value !== 'null') {
1936
- itemValues.push(tempItem.f_item_value)
1937
- }
1938
- })
1939
- f_item.f_item_value = itemValues
1940
- })
1941
- that.data['device' + that.devices[de].n].push({
1942
- f_device_type: item.f_device_type,
1943
- f_items: item.f_items
1944
- })
1945
- }
1946
- }
1947
- })
1948
- }
1949
- Util.replaceFalse(that.data)
1950
- Util.booleanFilter(that.data)
1951
- if (this.role == 'view') {
1952
- Util.ratifyPics(that.data)
1953
- Util.ratifyPics(that.picture)
1954
- } else {
1955
- Util.androidRatifyPics(that.data, this.$androidUtil.getProxyUrl())
1956
- }
1957
- //tag
1958
- }
1959
- // this.$goto('paper-message-blank', {userinfo:this.data,devices:this.devices,config:this.config,role:this.role}, 'self')
1960
- this.isshow = true
1961
- //tag
1962
- //tag)
1963
- console.log('Vue.config.safecheck.DevicesConfig', Vue.config.safecheck.DevicesConfig)
1964
- // 如果没有用户类型 默认按民用配置走
1965
- if (this.data.f_check_type == '非民用') {
1966
- this.deviceconfig = JSON.parse(JSON.stringify(Vue.config.safecheck.DevicesSetConfig))
1967
- if (typeof this.deviceconfig === 'string') {
1968
- this.deviceconfig = JSON.parse(this.deviceconfig)
1969
- }
1970
- }else{
1971
- this.deviceconfig = JSON.parse(JSON.stringify(Vue.config.safecheck.DevicesConfig))
1972
- if (typeof this.deviceconfig === 'string') {
1973
- this.deviceconfig = JSON.parse(this.deviceconfig)
1974
- }
1975
- }
1976
- if (this.data.f_collection_type == '按金额') {
1977
- if (this.deviceconfig["燃气表"]){
1978
- let aaa = Object.assign({}, this.config2["燃气表"].items, this.deviceconfig["燃气表"].items)
1979
- this.deviceconfig["燃气表"].items = aaa
1980
- }
1981
- } else {
1982
- if (this.deviceconfig["燃气表"]){
1983
- let aaa = Object.assign({}, this.config["燃气表"].items, this.deviceconfig["燃气表"].items)
1984
- this.deviceconfig["燃气表"].items = aaa
1985
- }
1986
- }
1987
- this.deviceconfig2 = ObjConfig.getObjConfig(this.deviceconfig)
1988
- this.deviceconfig2[0].items = jsonSort(this.deviceconfig2[0].items, "index")
1989
- this.deviceconfig2[1].items = jsonSort(this.deviceconfig2[1].items, "index")
1990
- this.deviceconfig2 = jsonSort(this.deviceconfig2, "index")
1991
- this.getDeviceAll()
1992
-
1993
- }
1994
- ).catch(
1995
- (respanse) => {
1996
- //tag
1997
- alert('查找安检单失败')
1998
- this.loading = false
1999
- })
2000
- }
2001
- }
2002
- })
2003
- },
2004
- watch: {
2005
- // 'isUpload'(val){
2006
- // //tag
2007
- // }
2008
- },
2009
- destroyed() {
2010
- //tag
2011
- this.disableTimer()
2012
- }
2013
- }
2014
-
2015
- </script>
2016
- <style scoped>
2017
- .table-striped thead tr th {
2018
- background-color: rgb(223, 237, 251);
2019
- padding: 10px;
2020
- border-left: solid 0px #dae4f2;
2021
- border-top: solid 1px #dae4f2;
2022
- border-right: none;
2023
- border-bottom: none;
2024
- text-align: center;
2025
- color: black;
2026
- }
2027
- </style>
1
+ <style scoped id="printStyle">
2
+ .img {
3
+ border: 1px solid #9773ed;
4
+ width: auto;
5
+ height: auto;
6
+ float: left;
7
+ text-align: center;
8
+ margin: 6px;
9
+ }
10
+
11
+ img {
12
+ margin: 6px;
13
+ }
14
+
15
+
16
+ .container {
17
+ margin: 10px auto;
18
+ width: 80%;
19
+ height: auto;
20
+ }
21
+
22
+ div::-webkit-scrollbar {
23
+ width: 8px !important;
24
+ height: 0 !important;
25
+ }
26
+
27
+ div {
28
+ -ms-overflow-style: none;
29
+ overflow: -moz-scrollbars-none;
30
+ }
31
+
32
+ .divmask {
33
+ pointer-events: none;
34
+ }
35
+
36
+ .app-header {
37
+ border-radius: 50%;
38
+ background: rgba(73, 158, 223, 0.4);
39
+ color: #FFF;
40
+ padding: 20px;
41
+ text-align: center;
42
+ font-size: 1.2em;
43
+ z-index: 10;
44
+ opacity: 0.5;
45
+ bottom: 50px;
46
+ margin-top: -20px;
47
+ position: absolute;
48
+ top: 10%;
49
+ right: 2%;
50
+ height: 8%;
51
+ }
52
+ </style>
53
+
54
+ <template>
55
+ <div class="basic-main" style="height: 100%">
56
+ <div class="page-header app-header auto" style="padding: 15px;margin-right: 10px;right: 0%;height: 7%">
57
+ <div @click="back()">
58
+ <img src="../../../assets/back.png" style="margin: 0px"/>
59
+ </div>
60
+ </div>
61
+ <div v-show="showPdfDownload" class="page-header app-header auto"
62
+ style="padding: 15px;margin-right: 3.7%;right: 0%;height: 7%">
63
+ <div @click="exportToPDF()">
64
+ <img src="../../../assets/下载_.png" style="margin: 0px;width: 30px"/>
65
+ </div>
66
+ </div>
67
+ <work-busy :is-busy="loading"></work-busy>
68
+ <div class="container-fluid" style="overflow: scroll">
69
+ <div class="row">
70
+ <div class="col-md-5" style="margin-right: 2%;margin-left: 2%;height: 100%;overflow: scroll">
71
+ <div style="width: 100%;margin: auto">
72
+ <table class="table table-striped table-bordered" style="margin-bottom: 6px;margin-top: 35px">
73
+ <thead>
74
+ <tr>
75
+ <th colspan="6" style="text-align: center">用户基本信息</th>
76
+ </tr>
77
+ </thead>
78
+ <tbody>
79
+ <tr>
80
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">用户编号:</td>
81
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_userinfo_code }}</td>
82
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">用户名称:</td>
83
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_user_name }}</td>
84
+ </tr>
85
+ <tr>
86
+ <td style="text-align: center;border: #E9E9E9 solid 1px">证件号码:</td>
87
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_idnumber }}</td>
88
+ <td style="text-align: center;border: #E9E9E9 solid 1px">用户类型:</td>
89
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_check_type }}</td>
90
+ </tr>
91
+ <tr>
92
+ <td style="text-align: center;border: #E9E9E9 solid 1px">用户电话:</td>
93
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_user_phone }}</td>
94
+ <td style="text-align: center;border: #E9E9E9 solid 1px">区 / 县:</td>
95
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_slice_area }}</td>
96
+ </tr>
97
+ <tr>
98
+ <td style="text-align: center;border: #E9E9E9 solid 1px">街 道:</td>
99
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_street }}</td>
100
+ <td style="text-align: center;border: #E9E9E9 solid 1px">楼 号:</td>
101
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_building }}</td>
102
+ </tr>
103
+ <tr>
104
+ <td style="text-align: center;border: #E9E9E9 solid 1px">单 元:</td>
105
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_unit }}</td>
106
+ <td style="text-align: center;border: #E9E9E9 solid 1px">楼 层:</td>
107
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_floor }}</td>
108
+ </tr>
109
+ <tr>
110
+ <td style="text-align: center;border: #E9E9E9 solid 1px">门 牌 号 :</td>
111
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_room }}</td>
112
+ <td style="text-align: center;border: #E9E9E9 solid 1px">用户性质:</td>
113
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_userproperties }}</td>
114
+ </tr>
115
+ <tr>
116
+ <td style="text-align: center;border: #E9E9E9 solid 1px">备注信息:</td>
117
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_comments }}</td>
118
+ <td style="text-align: center;border: #E9E9E9 solid 1px">小区名称:</td>
119
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_residential_area }}</td>
120
+ </tr>
121
+ <tr>
122
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px">详细住址:</td>
123
+ <td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_address }}</td>
124
+ </tr>
125
+ </tbody>
126
+ </table>
127
+ <table class="table table-striped table-bordered" style="margin-top: 40px">
128
+ <thead>
129
+ <tr>
130
+ <th colspan="6" style="text-align: center">设备信息</th>
131
+ </tr>
132
+ </thead>
133
+ <tbody>
134
+ <template v-for=" item in userdevice">
135
+ <tr >
136
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">设备名称:</td>
137
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_devices_type }}</td>
138
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">设备型号:</td>
139
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_brand }}</td>
140
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">生产日期:</td>
141
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_make_date }}</td>
142
+ </tr>
143
+ <tr >
144
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">到期时间:</td>
145
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_expire_date }}</td>
146
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">购买方式:</td>
147
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.WatchPurchase }}</td>
148
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">安装方式:</td>
149
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_install_type }}</td>
150
+ </tr>
151
+ </template>
152
+ </tbody>
153
+ </table>
154
+ <table class="table table-striped table-bordered" style="margin-top: 40px"
155
+ v-show="paperdata.f_entry_status=='入户'">
156
+ <thead>
157
+ <tr>
158
+ <th colspan="4" style="text-align: center">用户安检概况</th>
159
+ </tr>
160
+ </thead>
161
+ <tbody>
162
+ <tr>
163
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">到达时间:</td>
164
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_onsite_time }}</td>
165
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">离开时间:</td>
166
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_offsite_time }}</td>
167
+ </tr>
168
+ <tr>
169
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">入户状态:</td>
170
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_entry_status }}</td>
171
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">燃气使用:</td>
172
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_usegas }}</td>
173
+ </tr>
174
+ <tr>
175
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">用户满意度:</td>
176
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">{{
177
+ paperdata.f_client_evaluation
178
+ }}
179
+ </td>
180
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">安检结果:</td>
181
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;"
182
+ :style="{'color':ajresult=='有隐患'?'red':''}">{{ ajresult }}
183
+ </td>
184
+ </tr>
185
+ <tr>
186
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">备注:</td>
187
+ <td colspan="3"
188
+ style="text-align: center;border: #E9E9E9 solid 1px;word-wrap:break-word;word-break:break-all;width:87%">
189
+ {{ paperdata.f_repair_approved_note }}
190
+ </td>
191
+ </tr>
192
+ <tr>
193
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">隐患详情:</td>
194
+ <td colspan="3"
195
+ style="text-align: center;border: #E9E9E9 solid 1px;word-wrap:break-word;word-break:break-all;width:87%">
196
+ <span v-for="deviceCollect in deviceCollects">
197
+ <span class="li-font">
198
+ {{ deviceCollect.name }}:{{ deviceCollect.value }}&nbsp;&nbsp;&nbsp;
199
+ </span>
200
+ <br>
201
+ <span v-if="deviceCollect.value == '有隐患'">
202
+ <lable>
203
+ 隐患:
204
+ </lable>
205
+ <span v-for="val in deviceCollect.devices">
206
+ {{ val }}
207
+ </span><br>
208
+ </span>
209
+
210
+ </span>
211
+ </td>
212
+ </tr>
213
+
214
+ </tbody>
215
+ </table>
216
+ <table class="table table-striped table-bordered" style="margin-top: 40px"
217
+ v-show="paperdata.f_entry_status!='入户'">
218
+ <thead>
219
+ <tr>
220
+ <th colspan="4" style="text-align: center">用户安检概况</th>
221
+ </tr>
222
+ </thead>
223
+ <tbody>
224
+ <tr>
225
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">到达时间:</td>
226
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_onsite_time }}</td>
227
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">离开时间:</td>
228
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_offsite_time }}</td>
229
+ </tr>
230
+ <tr>
231
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">入户状态:</td>
232
+ <td colspan="2" style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">
233
+ {{ paperdata.f_entry_status }}
234
+ </td>
235
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">
236
+ <button-link style="color: black" type="button" class="btn btn-link" @click="showpicture2()">
237
+ {{ dev.lname }}
238
+ 查看{{ data.f_entry_status }}照片
239
+ </button-link>
240
+ </td>
241
+ </tr>
242
+
243
+ </tbody>
244
+ </table>
245
+ <table class="table table-striped table-bordered" style="margin-top: 40px"
246
+ v-show="item.f_no_checkplan == '复检'">
247
+ <thead>
248
+ <tr>
249
+ <th colspan="4" style="text-align: center">上次安检情况</th>
250
+ </tr>
251
+ </thead>
252
+ <tbody>
253
+ <tr>
254
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">上次安检到达时间:</td>
255
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
256
+ lastCheckData.f_onsite_time
257
+ }}
258
+ </td>
259
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">上次安检离开时间:</td>
260
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
261
+ lastCheckData.f_offsite_time
262
+ }}
263
+ </td>
264
+ </tr>
265
+ <tr>
266
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">上次安检员:</td>
267
+ <td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">
268
+ {{ lastCheckData.f_checker_name }}
269
+ </td>
270
+ </tr>
271
+ <tr>
272
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">安检结果:</td>
273
+ <td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">
274
+ {{ lastCheckData.f_defect_text }}
275
+ </td>
276
+ </tr>
277
+
278
+ </tbody>
279
+ </table>
280
+ <table class="table table-striped table-bordered" style="margin-top: 35px"
281
+ v-show="paperdata.f_entry_status=='入户' && paperdata.f_usegas == '未用气'">
282
+ <thead>
283
+ <tr>
284
+ <th style="text-align: center">未用气照片</th>
285
+ </tr>
286
+ </thead>
287
+ <tbody>
288
+ <tr>
289
+ <td style="margin: auto;text-align: center">
290
+ <div class="container" style="max-width: 550px;background: #FFFFFF">
291
+ <div class="img">
292
+ <img-self-plus :src="paperdata.f_nongasuser_path" style="float: left" width="150"
293
+ height="200"></img-self-plus>
294
+ </div>
295
+ </div>
296
+ </td>
297
+ </tr>
298
+ </tbody>
299
+ </table>
300
+ <table class="table table-striped table-bordered" style="margin-top: 35px"
301
+ v-show="showPdfImg && paperdata.f_entry_status=='入户' && ajresult=='有隐患'">
302
+ <thead>
303
+ <tr>
304
+ <th style="text-align: center">隐患照片</th>
305
+ </tr>
306
+ </thead>
307
+ <tbody>
308
+ <tr>
309
+ <td style="margin: auto;text-align: center">
310
+ <div class="container" style="max-width: 550px;background: #FFFFFF">
311
+ <div class="img" v-for="img in deviceImgs">
312
+ <img-self-plus :list="deviceCollect.imgs " :src="img.f_overall_path" style="float: left"
313
+ width="150"
314
+ height="200"></img-self-plus>
315
+ </div>
316
+ </div>
317
+
318
+
319
+ </td>
320
+
321
+ </tr>
322
+ </tbody>
323
+ </table>
324
+ <table class="table table-striped table-bordered" style="margin-top: 35px"
325
+ v-show="paperdata.f_entry_status=='入户'">
326
+ <thead>
327
+ <tr>
328
+ <th style="text-align: center">总体安检照片</th>
329
+ </tr>
330
+ </thead>
331
+ <tbody>
332
+ <tr>
333
+ <td style="margin: auto;text-align: center">
334
+ <div class="container" style="max-width: 550px;background: #FFFFFF">
335
+ <div class="img" v-for="img in paperdata.f_overall_imgs">
336
+ <img-self-plus :list="paperdata.f_overall_imgs " :src="img.f_overall_path" style="float: left"
337
+ width="150"
338
+ height="200"></img-self-plus>
339
+ </div>
340
+ </div>
341
+
342
+
343
+ </td>
344
+
345
+ </tr>
346
+ </tbody>
347
+ </table>
348
+ <table class="table table-striped table-bordered" style="width: 100%"
349
+ v-show="paperdata.f_entry_status=='入户' && (paperdata.f_sign_path || f_user_path) ">
350
+ <thead>
351
+ <tr>
352
+ <th style="text-align: center">用户签名照片</th>
353
+ </tr>
354
+ </thead>
355
+ <tbody>
356
+ <tr>
357
+ <td style="margin: auto;text-align: center" v-if="paperdata.f_sign_path">
358
+ <div class="container" style="max-width: 500px;background: #FFFFFF" >
359
+ <div class="img" style="float: none">
360
+ <img-self-plus :src="paperdata.f_sign_path" width="200" height="200"></img-self-plus>
361
+ </div>
362
+ </div>
363
+ </td>
364
+ <td style="margin: auto;text-align: center" v-if="f_user_path">
365
+ <div class="container" style="max-width: 550px;background: #FFFFFF" >
366
+ <div class="img" style="float: none">
367
+ <img-self-plus :src="'rs/image/file/'+f_user_path"
368
+ width="200"
369
+ height="200"></img-self-plus>
370
+ </div>
371
+ </div>
372
+ </td>
373
+ </tr>
374
+ </tbody>
375
+ </table>
376
+ <table class="table table-striped table-bordered"
377
+ v-show="paperdata.f_entry_status=='入户' && paperdata.f_defect_notified">
378
+ <thead>
379
+ <tr>
380
+ <th style="text-align: center">安检通知书/隐患整改通知书</th>
381
+ </tr>
382
+ </thead>
383
+ <tbody>
384
+ <tr>
385
+ <td style="margin: auto;text-align: center">
386
+ <div class="container" style="max-width: 500px;background: #FFFFFF">
387
+ <div class="img" style="float: none">
388
+ <img-self-plus :src="paperdata.f_notified_path" width="486" height="300"></img-self-plus>
389
+ </div>
390
+ </div>
391
+ </td>
392
+ </tr>
393
+ </tbody>
394
+ </table>
395
+ <table class="table table-striped table-bordered"
396
+ v-show="paperdata.f_entry_status=='入户'&& paperdata.f_video_path">
397
+ <thead>
398
+ <tr>
399
+ <th style="text-align: center">安检视频</th>
400
+ </tr>
401
+ </thead>
402
+ <tbody>
403
+ <tr>
404
+ <td style="margin: auto;text-align: center">
405
+ <div class="container" style="max-width: 500px;background: #FFFFFF">
406
+ <video width="320" height="200" controls v-if="paperdata.f_video_path">
407
+ <source :src="paperdata.f_video_path" type="video/mp4">
408
+ </video>
409
+ </div>
410
+ </td>
411
+ </tr>
412
+ </tbody>
413
+ </table>
414
+ <table class="table table-striped table-bordered"
415
+ v-show="item.f_recording1_path">
416
+ <thead>
417
+ <tr>
418
+ <th style="text-align: center">录音文件</th>
419
+ </tr>
420
+ </thead>
421
+ <tbody>
422
+ <tr>
423
+ <td style="margin: auto;text-align: center">
424
+ <div class="container" style="max-width: 500px;background: #FFFFFF">
425
+ <a class="button_spacing button_search-1"
426
+ :download="item.f_user_name+'-'+item.f_check_type+'-'+'录音文件.arm'"
427
+ :href="'rs/image/file/'+item.f_recording1_path">录音下载</a>
428
+ </div>
429
+ </td>
430
+ </tr>
431
+ </tbody>
432
+ </table>
433
+ </div>
434
+ </div>
435
+ <div class style="width: 1%;height: 100%;background-color: #F1F8FF;float: left;"></div>
436
+ <div class="col-md-6" style="height: 100%;overflow: scroll">
437
+ <div style="width: 95%;margin-left: 5%">
438
+ <table class="table table-striped table-bordered" v-for="config in deviceconfig2" style="margin-top: 35px">
439
+ <thead v-show="!(config.checkname!='燃气表'&&paperdata.f_entry_status!='入户')">
440
+ <tr>
441
+ <th style="text-align: center">{{ config.checkname }}</th>
442
+ </tr>
443
+ </thead>
444
+ <tbody v-show="!(config.checkname!='燃气表'&&paperdata.f_entry_status!='入户')">
445
+ <tr v-for="dev in config.items">
446
+ <td v-if="dev.type!='text' && dev.isshow != false">
447
+ <div class="row">
448
+ <div class="col-md-8" style="text-align: center;">
449
+ <label>
450
+ <button-link type="button" class="btn btn-link" @click="showpicture(config.checkname,dev.lname)"
451
+ :style="isred(config.checkname,dev.lname)?'color:red':'color:black'">
452
+ {{ dev.lname }}
453
+ </button-link>
454
+ </label>
455
+ </div>
456
+ <div class="col-md-4" style="text-align: center">
457
+ <label style="font-weight: normal"
458
+ v-if="dev.type!='picture'">{{
459
+ getDeviceValue(config.checkname, dev.lname) ? getDeviceValue(config.checkname, dev.lname) : '无'
460
+ }}</label>
461
+ <label style="font-weight: normal" v-if="dev.type=='picture'">
462
+ <div v-show="getDevicePath(config.checkname,dev.lname)">
463
+ <button-link style="color: black" type="button" class="btn btn-link"
464
+ @click="showpath(getDevicePath(config.checkname,dev.lname),dev.lname)">查看照片
465
+ </button-link>
466
+ </div>
467
+ <div v-show="!getDevicePath(config.checkname,dev.lname)">无照片</div>
468
+ </label>
469
+ </div>
470
+ </div>
471
+ </td>
472
+ <td v-if="dev.type==='text' && dev.isshow != false">
473
+ <label style="width: 100%;text-align: center">{{ dev.lname }}</label>
474
+ </td>
475
+ </tr>
476
+ </tbody>
477
+ </table>
478
+ <div v-show="showButton">
479
+ <button class="button_spacing button_search" @click="auditSuccesss()">通过</button>
480
+ <button class="button_spacing button_search" @click="auditFail()">不通过</button>
481
+ </div>
482
+ </div>
483
+ </div>
484
+
485
+ </div>
486
+ </div>
487
+ <div v-show="false">
488
+ <div class="container-fluid" id="toPdf" style="overflow: scroll">
489
+ <div class="row">
490
+ <div style="margin-right: 2%;margin-left: 2%;height: 100%;overflow: scroll">
491
+ <div style="width: 100%;margin: auto">
492
+ <table class="table table-striped table-bordered" style="margin-bottom: 6px;margin-top: 35px">
493
+ <thead>
494
+ <tr>
495
+ <th colspan="6" style="text-align: center">用户基本信息</th>
496
+ </tr>
497
+ </thead>
498
+ <tbody>
499
+ <tr>
500
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">用户编号:</td>
501
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
502
+ paperdata.f_userinfo_code
503
+ }}
504
+ </td>
505
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">用户名称:</td>
506
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_user_name }}</td>
507
+ </tr>
508
+ <tr>
509
+ <td style="text-align: center;border: #E9E9E9 solid 1px">证件号码:</td>
510
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_idnumber }}</td>
511
+ <td style="text-align: center;border: #E9E9E9 solid 1px">用户类型:</td>
512
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_check_type }}</td>
513
+ </tr>
514
+ <tr>
515
+ <td style="text-align: center;border: #E9E9E9 solid 1px">用户电话:</td>
516
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_user_phone }}</td>
517
+ <td style="text-align: center;border: #E9E9E9 solid 1px">区 / 县:</td>
518
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_slice_area }}</td>
519
+ </tr>
520
+ <tr>
521
+ <td style="text-align: center;border: #E9E9E9 solid 1px">街 道:</td>
522
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_street }}</td>
523
+ <td style="text-align: center;border: #E9E9E9 solid 1px">楼 号:</td>
524
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_building }}</td>
525
+ </tr>
526
+ <tr>
527
+ <td style="text-align: center;border: #E9E9E9 solid 1px">单 元:</td>
528
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_unit }}</td>
529
+ <td style="text-align: center;border: #E9E9E9 solid 1px">楼 层:</td>
530
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_floor }}</td>
531
+ </tr>
532
+ <tr>
533
+ <td style="text-align: center;border: #E9E9E9 solid 1px">门 牌 号 :</td>
534
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_room }}</td>
535
+ <td style="text-align: center;border: #E9E9E9 solid 1px">用户性质:</td>
536
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_userproperties }}</td>
537
+ </tr>
538
+ <tr>
539
+ <td style="text-align: center;border: #E9E9E9 solid 1px">备注信息:</td>
540
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_comments }}</td>
541
+ <td style="text-align: center;border: #E9E9E9 solid 1px">小区名称:</td>
542
+ <td style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_residential_area }}</td>
543
+ </tr>
544
+ <tr>
545
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px">详细住址:</td>
546
+ <td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px">{{ paperdata.f_address }}</td>
547
+ </tr>
548
+ </tbody>
549
+ </table>
550
+ <table class="table table-striped table-bordered" style="margin-top: 40px">
551
+ <thead>
552
+ <tr>
553
+ <th colspan="6" style="text-align: center">设备信息</th>
554
+ </tr>
555
+ </thead>
556
+ <tbody>
557
+ <template v-for=" item in userdevice">
558
+ <tr >
559
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">设备名称:</td>
560
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_devices_type }}</td>
561
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">设备型号:</td>
562
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_brand }}</td>
563
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">生产日期:</td>
564
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_make_date }}</td>
565
+ </tr>
566
+ <tr >
567
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">到期时间:</td>
568
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_expire_date }}</td>
569
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">购买方式:</td>
570
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.WatchPurchase }}</td>
571
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">安装方式:</td>
572
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 15%">{{ item.f_install_type }}</td>
573
+ </tr>
574
+ </template>
575
+ </tbody>
576
+ </table>
577
+ <table class="table table-striped table-bordered" style="margin-top: 40px"
578
+ v-show="paperdata.f_entry_status=='入户'">
579
+ <thead>
580
+ <tr>
581
+ <th colspan="4" style="text-align: center">用户安检概况</th>
582
+ </tr>
583
+ </thead>
584
+ <tbody>
585
+ <tr>
586
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">到达时间:</td>
587
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_onsite_time }}</td>
588
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">离开时间:</td>
589
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
590
+ paperdata.f_offsite_time
591
+ }}
592
+ </td>
593
+ </tr>
594
+ <tr>
595
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">入户状态:</td>
596
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
597
+ paperdata.f_entry_status
598
+ }}
599
+ </td>
600
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">燃气使用:</td>
601
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_usegas }}</td>
602
+ </tr>
603
+ <tr>
604
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">用户满意度:</td>
605
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">{{
606
+ paperdata.f_client_evaluation
607
+ }}
608
+ </td>
609
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">安检结果:</td>
610
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;"
611
+ :style="{'color':ajresult=='有隐患'?'red':''}">{{ ajresult }}
612
+ </td>
613
+ </tr>
614
+ <tr>
615
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">备注:</td>
616
+ <td colspan="3"
617
+ style="text-align: center;border: #E9E9E9 solid 1px;word-wrap:break-word;word-break:break-all;width:87%">
618
+ {{ paperdata.f_repair_approved_note }}
619
+ </td>
620
+ </tr>
621
+ <tr>
622
+ <td colspan="1" style="text-align: center;border: #E9E9E9 solid 1px;">隐患详情:</td>
623
+ <td colspan="3"
624
+ style="text-align: center;border: #E9E9E9 solid 1px;word-wrap:break-word;word-break:break-all;width:87%">
625
+ <span v-for="deviceCollect in deviceCollects">
626
+ <span class="li-font">
627
+ {{ deviceCollect.name }}:{{ deviceCollect.value }}&nbsp;&nbsp;&nbsp;
628
+ </span>
629
+ <br>
630
+ <span v-if="deviceCollect.value == '有隐患'">
631
+ <lable>
632
+ 隐患:
633
+ </lable>
634
+ <span v-for="val in deviceCollect.devices">
635
+ {{ val }}
636
+ </span><br>
637
+ </span>
638
+
639
+ </span>
640
+ </td>
641
+ </tr>
642
+
643
+ </tbody>
644
+ </table>
645
+ <table class="table table-striped table-bordered" style="margin-top: 40px"
646
+ v-show="paperdata.f_entry_status!='入户'">
647
+ <thead>
648
+ <tr>
649
+ <th colspan="4" style="text-align: center">用户安检概况</th>
650
+ </tr>
651
+ </thead>
652
+ <tbody>
653
+ <tr>
654
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">到达时间:</td>
655
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{ paperdata.f_onsite_time }}</td>
656
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">离开时间:</td>
657
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
658
+ paperdata.f_offsite_time
659
+ }}
660
+ </td>
661
+ </tr>
662
+ <tr>
663
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">入户状态:</td>
664
+ <td colspan="2" style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">
665
+ {{ paperdata.f_entry_status }}
666
+ </td>
667
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">
668
+ <button-link style="color: black" type="button" class="btn btn-link" @click="showpicture2()">
669
+ {{ dev.lname }}
670
+ 查看{{ data.f_entry_status }}照片
671
+ </button-link>
672
+ </td>
673
+ </tr>
674
+
675
+ </tbody>
676
+ </table>
677
+ <table class="table table-striped table-bordered" style="margin-top: 40px"
678
+ v-show="item.f_no_checkplan == '复检'">
679
+ <thead>
680
+ <tr>
681
+ <th colspan="4" style="text-align: center">上次安检情况</th>
682
+ </tr>
683
+ </thead>
684
+ <tbody>
685
+ <tr>
686
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">上次安检到达时间:</td>
687
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
688
+ lastCheckData.f_onsite_time
689
+ }}
690
+ </td>
691
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">上次安检离开时间:</td>
692
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">{{
693
+ lastCheckData.f_offsite_time
694
+ }}
695
+ </td>
696
+ </tr>
697
+ <tr>
698
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">上次安检员:</td>
699
+ <td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">
700
+ {{ lastCheckData.f_checker_name }}
701
+ </td>
702
+ </tr>
703
+ <tr>
704
+ <td style="text-align: center;border: #E9E9E9 solid 1px;width: 17%">安检结果:</td>
705
+ <td colspan="3" style="text-align: center;border: #E9E9E9 solid 1px;width: 33%">
706
+ {{ lastCheckData.f_defect_text }}
707
+ </td>
708
+ </tr>
709
+
710
+ </tbody>
711
+ </table>
712
+ <table class="table table-striped table-bordered" style="margin-top: 35px"
713
+ v-show="showPdfImg && paperdata.f_entry_status=='入户' && ajresult=='有隐患'">
714
+ <thead>
715
+ <tr>
716
+ <th style="text-align: center">隐患照片</th>
717
+ </tr>
718
+ </thead>
719
+ <tbody>
720
+ <tr>
721
+ <td style="margin: auto;text-align: center">
722
+ <div class="container" style="max-width: 550px;background: #FFFFFF">
723
+ <div class="img" v-for="img in deviceImgs">
724
+ <img-self-plus :list="deviceCollect.imgs " :src="img.f_overall_path" style="float: left"
725
+ width="150"
726
+ height="200"></img-self-plus>
727
+ </div>
728
+ </div>
729
+
730
+
731
+ </td>
732
+
733
+ </tr>
734
+ </tbody>
735
+ </table>
736
+ <table class="table table-striped table-bordered" style="margin-top: 35px"
737
+ v-show="paperdata.f_entry_status=='入户'">
738
+ <thead>
739
+ <tr>
740
+ <th style="text-align: center">总体安检照片</th>
741
+ </tr>
742
+ </thead>
743
+ <tbody>
744
+ <tr>
745
+ <td style="margin: auto;text-align: center">
746
+ <div class="container" style="max-width: 550px;background: #FFFFFF">
747
+ <div class="img" v-for="img in paperdata.f_overall_imgs">
748
+ <img-self-plus :list="paperdata.f_overall_imgs " :src="img.f_overall_path" style="float: left"
749
+ width="150"
750
+ height="200"></img-self-plus>
751
+ </div>
752
+ </div>
753
+
754
+
755
+ </td>
756
+
757
+ </tr>
758
+ </tbody>
759
+ </table>
760
+ <table class="table table-striped table-bordered" style="width: 100%"
761
+ v-show="paperdata.f_entry_status=='入户'">
762
+ <thead>
763
+ <tr>
764
+ <th style="text-align: center">用户签名照片</th>
765
+ </tr>
766
+ </thead>
767
+ <tbody>
768
+ <tr>
769
+ <td style="margin: auto;text-align: center">
770
+ <div class="container" style="max-width: 500px;background: #FFFFFF">
771
+ <div class="img" style="float: none">
772
+ <img-self-plus :src="paperdata.f_sign_path" width="200" height="200"></img-self-plus>
773
+ </div>
774
+ </div>
775
+ </td>
776
+ <td style="margin: auto;text-align: center">
777
+ <div class="container" style="max-width: 550px;background: #FFFFFF" v-if="f_user_path">
778
+ <div class="img" style="float: none">
779
+ <img-self-plus :src="'rs/image/file/'+f_user_path"
780
+ width="200"
781
+ height="200"></img-self-plus>
782
+ </div>
783
+ </div>
784
+ </td>
785
+ </tr>
786
+ </tbody>
787
+ </table>
788
+ <table class="table table-striped table-bordered"
789
+ v-show="paperdata.f_entry_status=='入户' && paperdata.f_defect_notified">
790
+ <thead>
791
+ <tr>
792
+ <th style="text-align: center">安检通知书/隐患整改通知书</th>
793
+ </tr>
794
+ </thead>
795
+ <tbody>
796
+ <tr>
797
+ <td style="margin: auto;text-align: center">
798
+ <div class="container" style="max-width: 500px;background: #FFFFFF">
799
+ <div class="img" style="float: none">
800
+ <img-self-plus :src="paperdata.f_notified_path" width="486" height="300"></img-self-plus>
801
+ </div>
802
+ </div>
803
+ </td>
804
+ </tr>
805
+ </tbody>
806
+ </table>
807
+ <table class="table table-striped table-bordered"
808
+ v-show="paperdata.f_entry_status=='入户'&& paperdata.f_video_path">
809
+ <thead>
810
+ <tr>
811
+ <th style="text-align: center">安检视频</th>
812
+ </tr>
813
+ </thead>
814
+ <tbody>
815
+ <tr>
816
+ <td style="margin: auto;text-align: center">
817
+ <div class="container" style="max-width: 500px;background: #FFFFFF">
818
+ <video width="320" height="200" controls v-if="paperdata.f_video_path">
819
+ <source :src="paperdata.f_video_path" type="video/mp4">
820
+ </video>
821
+ </div>
822
+ </td>
823
+ </tr>
824
+ </tbody>
825
+ </table>
826
+ <table class="table table-striped table-bordered"
827
+ v-show="item.f_recording1_path">
828
+ <thead>
829
+ <tr>
830
+ <th style="text-align: center">录音文件</th>
831
+ </tr>
832
+ </thead>
833
+ <tbody>
834
+ <tr>
835
+ <td style="margin: auto;text-align: center">
836
+ <div class="container" style="max-width: 500px;background: #FFFFFF">
837
+ <a class="button_spacing button_search-1"
838
+ :download="item.f_user_name+'-'+item.f_check_type+'-'+'录音文件.arm'"
839
+ :href="'rs/image/file/'+item.f_recording1_path">录音下载</a>
840
+ </div>
841
+ </td>
842
+ </tr>
843
+ </tbody>
844
+ </table>
845
+ </div>
846
+ </div>
847
+ <div style="margin-right: 2%;margin-left: 2%;height: 100%;overflow: scroll">
848
+ <div style="width: 95%;margin-left: 5%">
849
+ <table class="table table-striped table-bordered" v-for="config in deviceconfig2"
850
+ style="margin-top: 35px">
851
+ <thead v-show="!(config.checkname!='燃气表'&&paperdata.f_entry_status!='入户')">
852
+ <tr>
853
+ <th style="text-align: center">{{ config.checkname }}</th>
854
+ </tr>
855
+ </thead>
856
+ <tbody v-show="!(config.checkname!='燃气表'&&paperdata.f_entry_status!='入户')">
857
+ <tr v-for="dev in config.items">
858
+ <td v-if="dev.type!='text' && dev.isshow != false">
859
+ <div class="row">
860
+ <div class="col-md-8" style="text-align: center;">
861
+ <label>
862
+ <button-link type="button" class="btn btn-link"
863
+ @click="showpicture(config.checkname,dev.lname)"
864
+ :style="isred(config.checkname,dev.lname)?'color:red':'color:black'">
865
+ {{ dev.lname }}
866
+ </button-link>
867
+ </label>
868
+ </div>
869
+ <div class="col-md-4" style="text-align: center">
870
+ <label style="font-weight: normal"
871
+ v-if="dev.type!='picture'">{{
872
+ getDeviceValue(config.checkname, dev.lname) ? getDeviceValue(config.checkname, dev.lname) : '无'
873
+ }}</label>
874
+ <label style="font-weight: normal" v-if="dev.type=='picture'">
875
+ <div v-show="getDevicePath(config.checkname,dev.lname)">
876
+ <button-link style="color: black" type="button" class="btn btn-link"
877
+ @click="showpath(getDevicePath(config.checkname,dev.lname),dev.lname)">查看照片
878
+ </button-link>
879
+ </div>
880
+ <div v-show="!getDevicePath(config.checkname,dev.lname)">无照片</div>
881
+ </label>
882
+ </div>
883
+ </div>
884
+ </td>
885
+ <td v-if="dev.type==='text' && dev.isshow != false">
886
+ <label style="width: 100%;text-align: center">{{ dev.lname }}</label>
887
+ </td>
888
+ </tr>
889
+ </tbody>
890
+ </table>
891
+ </div>
892
+ </div>
893
+
894
+ </div>
895
+ </div>
896
+ </div>
897
+ </div>
898
+ <modal :show.sync="imgshow" v-ref:modal backdrop="true">
899
+ <header slot="modal-header" class="modal-header">
900
+ {{ picturename }}
901
+ </header>
902
+ <article slot="modal-body" class="modal-body">
903
+ <div class="from-group">
904
+ <div class="row">
905
+ <div class="col-md-6">
906
+ <img-self-plus v-if="showimg1" :src="showimg1" width="240" height="300"></img-self-plus>
907
+ </div>
908
+ <div class="col-md-6">
909
+ <img-self-plus v-if="showimg2" :src="showimg2" width="240" height="300"></img-self-plus>
910
+ </div>
911
+ <div class="col-md-6" v-for="item in otherDarginShowImgs">
912
+ <img-self-plus v-if="item.path" :src="item.path" width="240" height="300"></img-self-plus>
913
+ </div>
914
+ </div>
915
+ </div>
916
+ </article>
917
+ <footer slot="modal-footer" class="modal-footer" v-show="false">
918
+ <button type="button" class="btn btn-success" @click='imgclose'>关闭</button>
919
+ </footer>
920
+ </modal>
921
+ <modal :show.sync="imgshow2" v-ref:modal backdrop="true">
922
+ <header slot="modal-header" class="modal-header">
923
+ {{ paperdata.f_entry_status }}照片
924
+ </header>
925
+ <article slot="modal-body" class="modal-body">
926
+ <div class="from-group">
927
+ <div class="row">
928
+ <div class="col-md-6">
929
+ <img-self-plus v-if="this.paperdata.f_entry_status=='到访不遇'&& this.paperdata.f_noanswer_path" :src="showimg3"
930
+ width="282"
931
+ height="400"></img-self-plus>
932
+ </div>
933
+ <div class="col-md-6">
934
+ <img-self-plus v-if="this.paperdata.f_entry_status=='到访不遇'&& this.paperdata.f_noanswer1_path"
935
+ :src="showimg5" width="282"
936
+ height="400"></img-self-plus>
937
+ </div>
938
+ <div class="col-md-6">
939
+ <img-self-plus v-if="this.paperdata.f_entry_status=='到访不遇'&& this.paperdata.f_noanswer2_path"
940
+ :src="showimg6" width="282"
941
+ height="400"></img-self-plus>
942
+ </div>
943
+ <div class="col-md-6">
944
+ <img-self-plus v-if="this.paperdata.f_entry_status=='拒检' && this.paperdata.f_rejectcheck_path"
945
+ :src="showimg4" width="282"
946
+ height="400"></img-self-plus>
947
+ </div>
948
+ <div class="col-md-6">
949
+ <img-self-plus v-if="this.paperdata.f_entry_status=='拒检' && this.paperdata.f_rejectcheck1_path"
950
+ :src="showimg7" width="282"
951
+ height="400"></img-self-plus>
952
+ </div>
953
+ <div class="col-md-6">
954
+ <img-self-plus v-if="this.paperdata.f_entry_status=='拒检' && this.paperdata.f_rejectcheck2_path"
955
+ :src="showimg8" width="282"
956
+ height="400"></img-self-plus>
957
+ </div>
958
+ </div>
959
+ </div>
960
+ </article>
961
+ <footer slot="modal-footer" class="modal-footer" v-show="false">
962
+ <button type="button" class="btn btn-success" @click='imgclose'>关闭</button>
963
+ </footer>
964
+ </modal>
965
+ <modal :show.sync="showModel" :width="'50%'" :backdrop="false">
966
+ <div slot="modal-header" class="modal-header">
967
+ <h4 class="modal-title">
968
+ 安检审核备注
969
+ </h4>
970
+ </div>
971
+ <div slot="modal-body" class="modal-body">
972
+ <div class="row">
973
+ <div class="form-group col-sm-4">
974
+ <label class="font_normal_body">审核备注:</label>
975
+ <textarea v-model="message"></textarea>
976
+ </div>
977
+ </div>
978
+ </div>
979
+ <div slot="modal-footer" class="modal-footer" style="text-align: center">
980
+ <button class="button_search" style="margin-right: 15px" @click="auditFailOK()">确定</button>
981
+ <button class="button_search" style="margin-right: 15px" @click="auditFailCancel()">取消</button>
982
+ </div>
983
+ </modal>
984
+ </template>
985
+
986
+ <script>
987
+ import html2pdf from 'html2pdf.js'
988
+ import ObjConfig from '../../../utils/GerJsonObjectConfig'
989
+ import RadioGroup from 'vue-client/src/vue-strap/src/radioGroup'
990
+ import Radio from 'vue-client/src/vue-strap/src/radioBtn'
991
+ import Vue from 'vue'
992
+ import * as Util from '../../Util'
993
+ import {jsonSort} from '../../../utils/LdapHelper'
994
+ import {HttpResetClass} from "vue-client";
995
+ let asyncReady = async function (self) {
996
+ // 获取配置信息
997
+ try {
998
+ let res = await new HttpResetClass().load('get','/api/af-safecheck/vue',null, {resolveMsg: null, rejectMsg: null})
999
+ self.delConfigKey(res.data)
1000
+ Vue.config.safecheck=res.data
1001
+ console.log('获取配置结果===', res.data)
1002
+ } catch (error) {
1003
+ // 忽略704,文件找不到异常R
1004
+ if (error.status !== 704) {
1005
+ throw error
1006
+ }
1007
+ }
1008
+ }
1009
+ export default {
1010
+ title: '安检单',
1011
+ props: ['f_plan_id', 'item', 'role','gotoitem'],
1012
+ data() {
1013
+ return {
1014
+ f_user_path:'',
1015
+ message: '',
1016
+ showButton: false,
1017
+ showModel: false,
1018
+ data: {
1019
+ f_devices: [],
1020
+ f_defect_content: ''
1021
+ },
1022
+ showPdfDownload: this.$appdata.getSingleValue('安检结果pdf下载') ? this.$appdata.getSingleValue('安检结果pdf下载') : false,
1023
+ showPdfImg: this.$appdata.getSingleValue('安检结果pdf展示隐患照片') ? this.$appdata.getSingleValue('安检结果pdf展示隐患照片') : false,
1024
+ lastCheckData: {},
1025
+ paperdata: {},
1026
+ picturename: '隐患照片',
1027
+ defectDevice: {},
1028
+ hasDevice: false,
1029
+ deviceCollect: {},
1030
+ deviceCollects: [],
1031
+ deviceImgs:[],
1032
+ isshow: false,
1033
+ ajresult: '',
1034
+ loading: true,
1035
+ imgshow: false,
1036
+ imgshow2: false,
1037
+ isUpload: false,
1038
+ livedispose: '',
1039
+ showimg1: '',
1040
+ showimg2: '',
1041
+ showimg3: '',
1042
+ showimg4: '',
1043
+ showimg5: '',
1044
+ showimg6: '',
1045
+ showimg7: '',
1046
+ showimg8: '',
1047
+ hiddenDangerImgNumber: 0, //配置项中隐患照片数
1048
+ otherDarginShowImgs: [],//其他隐患图片
1049
+ startClick: false, //开始安检按钮是否可点击
1050
+ isStrat: false, //是否开始安检
1051
+ checkResult: {},//查询结果
1052
+ newcheckResult: {},
1053
+ timer: null,
1054
+ showModal: false,
1055
+ pic_to_be_viewed: '',
1056
+ showBack: true,
1057
+ devices: [],
1058
+ devicesAll: [],
1059
+ configAJ: [],
1060
+ configRQ: [],
1061
+ deviceconfig: {},
1062
+ newConfig: '',
1063
+ deviceconfig2: [],
1064
+ f_devices: [],
1065
+ config: {
1066
+ "燃气表": {
1067
+ "checkmust": true,
1068
+ "index": 1,
1069
+ "items": {
1070
+ "基表编号": {"index": 1, "type": "string", "readonly": true},
1071
+ "气表型号": {"index": 2, "type": "string", "readonly": true},
1072
+ "气表品牌": {"index": 3, "type": "string", "readonly": true},
1073
+ "表向": {"index": 4, "type": "string", "readonly": true},
1074
+ "初始表底": {"index": 5, "type": "number", "isshow": false, "readonly": true},
1075
+ "上期表读数": {"index": 6, "type": "number", "readonly": true, isshow: false},
1076
+ "累购气量": {"index": 7, "type": "number", "readonly": true},
1077
+ "已用气量": {"index": 8, "type": "number", "checkmust": false},//基表数
1078
+ "剩余气量": {"index": 9, "type": "number", "checkmust": false},//累购-已用
1079
+ //显示屏数 --实际剩余气量
1080
+ "气量异常差值": {"index": 10, "type": "number", "readonly": true},
1081
+ "表箱号": {"index": 11, "type": "string", "readonly": true},
1082
+ "燃气表照片": {"index": 12, "type": "picture", "checkmust": false},
1083
+ }
1084
+ // 注意,配置项的index必须与上面的固定配置保持'顺序'
1085
+ }
1086
+ },
1087
+ //金额
1088
+ config2: {
1089
+ "燃气表": {
1090
+ "checkmust": true,
1091
+ "index": 1,
1092
+ "items": {
1093
+ "基表编号": {"index": 1, "type": "string", "readonly": true},
1094
+ "气表型号": {"index": 2, "type": "string", "readonly": true},
1095
+ "气表品牌": {"index": 3, "type": "string", "readonly": true},
1096
+ "表向": {"index": 4, "type": "string", "readonly": true},
1097
+ "初始表底": {"index": 5, "type": "number", "isshow": false, "readonly": true},
1098
+ "上期表读数": {"index": 6, "type": "number", "readonly": true, isshow: false},
1099
+ "累购金额": {"index": 7, "type": "number", "readonly": true},
1100
+ "已用金额": {"index": 8, "type": "number", "checkmust": false},
1101
+ //显示屏数 --实际剩余气量
1102
+ "剩余金额": {"index": 9, "type": "number", "checkmust": false},
1103
+ "金额异常差值": {"index": 10, "type": "number", "readonly": true},
1104
+ "表箱号": {"index": 11, "type": "string", "readonly": true},
1105
+ "燃气表照片": {"index": 12, "type": "picture", "checkmust": false},
1106
+ }
1107
+ }
1108
+ },
1109
+ userdevice:[]
1110
+ }
1111
+ },
1112
+ components: {
1113
+ RadioGroup,
1114
+ Radio,
1115
+ },
1116
+ computed: {
1117
+ isRecodrDownloadBtn() {
1118
+ // 投诉单下派还是处理
1119
+ let res = this.$appdata.getSingleValue('无限制录音');
1120
+ if (res == 'true') {
1121
+ return true;
1122
+ } else {
1123
+ return false;
1124
+ }
1125
+ },
1126
+ selector: {
1127
+ get() {
1128
+ return 'paper-state'
1129
+ },
1130
+ set(val) {
1131
+ if (this.isStrat) {
1132
+ this.$goto(val, {userinfo: this.data}, 'paper-router')
1133
+ } else {
1134
+ this.$showMessage('未开始安检!')
1135
+ }
1136
+ }
1137
+ },
1138
+ actionEnabled: {
1139
+ get() {
1140
+ return this.role == 'inspect'
1141
+ }
1142
+ }
1143
+ },
1144
+ methods: {
1145
+ getuserinfodevice(){
1146
+ new HttpResetClass().load('POST', `/af-telephone/rs/sql/tel_singleTable_OrderBy`, {
1147
+ data: {
1148
+ items: '*',
1149
+ tablename: 't_devices',
1150
+ condition: `f_userinfo_id = '${this.item.f_userinfoid}'`,
1151
+ orderitem: 'id'
1152
+ }
1153
+ }, {resolveMsg: null, rejectMsg:null}).then((res) => {
1154
+ this.userdevice = res.data
1155
+ })
1156
+ },
1157
+ delConfigKey(obj){
1158
+ // 从琉璃中获取的配置中会包含 $开头的一些额外描述新的key。为了兼容v3的代码逻辑在此函数中去掉
1159
+ Object.keys(obj).forEach(key =>{
1160
+ Object.keys(obj[key]).forEach(col => {
1161
+ // 检查键是否以$开头
1162
+ if (col.startsWith('$')) {
1163
+ // 使用delete操作符删除键
1164
+ delete obj[key][col];
1165
+ }
1166
+ })
1167
+ })
1168
+ },
1169
+ exportToPDF() {
1170
+ const element = document.getElementById('toPdf') // 替换为您要导出的页面元素的ID
1171
+ html2pdf(element)
1172
+ },
1173
+ showAudit() {
1174
+ var audit = this.$appdata.getSingleValue('安检审核');
1175
+ if (audit == '是' && (this.item.f_approved == '未审核' || !this.item.f_approved)) {
1176
+ this.showButton = true
1177
+ }
1178
+ },
1179
+ //安检审核成功
1180
+ auditSuccesss() {
1181
+ this.loading = true;
1182
+ var reqdata = {
1183
+ audit_result: '通过',
1184
+ operator: "success",
1185
+ audit_time: Util.getNowDate(),
1186
+ user_name: this.$login.f.name,
1187
+ id: this.item.id,
1188
+ f_check_item_id: this.item.f_check_item_id
1189
+ }
1190
+ new HttpResetClass().load('POST', '/api/af-safecheck/logic/updateAafeAudit', {data: reqdata}, {
1191
+ resolveMsg: '安检审核成功!',
1192
+ rejectMsg: '安检审核出错!'
1193
+ }).then((res) => {
1194
+ if (res.data.code == 200) {
1195
+ this.loading = false;
1196
+ this.$emit('showback')
1197
+ }
1198
+ })
1199
+ },
1200
+ auditFail() {
1201
+ this.showModel = true;
1202
+ },
1203
+ auditFailOK() {
1204
+
1205
+ this.loading = true;
1206
+ var reqdata = {
1207
+ message: this.message,
1208
+ audit_result: '不通过',
1209
+ operator: "fail",
1210
+ audit_time: Util.getNowDate(),
1211
+ user_name: this.$login.f.name,
1212
+ id: this.item.id,
1213
+ f_check_item_id: this.item.f_check_item_id
1214
+ }
1215
+ new HttpResetClass().load('POST', '/api/af-safecheck/logic/updateAafeAudit', {data: reqdata}, {
1216
+ resolveMsg: '安检审核成功!',
1217
+ rejectMsg: '安检审核出错!'
1218
+ }).then((res) => {
1219
+ if (res.data.code == 200) {
1220
+ this.loading = false;
1221
+ this.message = '';
1222
+ this.showModel = false;
1223
+ this.$emit('showback')
1224
+ }
1225
+ })
1226
+ },
1227
+ auditFailCancel() {
1228
+ this.showModel = false;
1229
+ this.message = '';
1230
+ },
1231
+
1232
+ devicesCollect() {
1233
+ //tag
1234
+ //tag)
1235
+ //tag)
1236
+ //tag
1237
+ this.deviceCollects = []
1238
+ this.deviceImgs = []
1239
+ let checkResult = '正常'
1240
+ this.result = '正常'
1241
+ let codata = JSON.parse(JSON.stringify(this.data))
1242
+ //tag)
1243
+ for (let device in this.data) {
1244
+ let f_device_type
1245
+ if (device.startsWith("device")) {
1246
+ for (let item in this.data[device]) {
1247
+ if (this.data[device].length > 1) {
1248
+ let j = Number.parseInt(item) + 1
1249
+ f_device_type = `${this.data[device][item].f_device_type}${j}`
1250
+ } else {
1251
+ f_device_type = this.data[device][item].f_device_type
1252
+ }
1253
+ // //tag
1254
+ let deviceelse = []
1255
+ let deviceInfos = []
1256
+
1257
+ for (let i in this.data[device][item].f_items) {
1258
+ let defects = ''
1259
+
1260
+ let items = this.data[device][item].f_items[i]
1261
+
1262
+
1263
+ if ((items.type === 'selector' || items.type === 'radio' || items.type === 'checkbox' || items.type === 'picture') && items.f_item_value != null && items.f_item_value instanceof Array) {
1264
+ for (let i in items.f_item_value) {
1265
+ let f_item_value = items.f_item_value[i]
1266
+
1267
+ //tag)
1268
+ //tag)
1269
+ //tag)
1270
+ //tag)
1271
+
1272
+ if (!this.config[this.data[device][item].f_device_type].items[items.f_item_name] && (items.isdefect && (items.isdefect == 'true' || items.isdefect == true))) {
1273
+ continue
1274
+ }
1275
+ /*if(items.f_is_defect != true && items.f_is_defect != 'true'){
1276
+ continue
1277
+ }*/
1278
+ if (items.f_is_defect == 'true' || items.f_is_defect == true) {
1279
+ checkResult = '有隐患'
1280
+ this.result = '有隐患'
1281
+ defects = `${defects}:${f_item_value}/`
1282
+ }
1283
+ /*let options = this.config[this.data[device][item].f_device_type].items[items.f_item_name].options
1284
+ for (let option in options) {
1285
+ if (options[option].data == f_item_value) {
1286
+ if (options[option].isdefect == 'true' || options[option].isdefect == true) {
1287
+ checkResult = '有隐患'
1288
+ this.result = '有隐患'
1289
+ defects = `${defects}:${options[option].data}/`
1290
+ // let level = options[option].level
1291
+ }
1292
+ }
1293
+ }*/
1294
+ //tag)
1295
+ }
1296
+ if (defects != '') {
1297
+ console.log('有隐患items', items)
1298
+ deviceInfos.push(`${items.f_item_name}${defects.substring(0, defects.length - 1)}${items.f_else ? items.f_else : ''}`)
1299
+ this.deviceImgs.push({f_overall_path:items.f_path})
1300
+ }
1301
+ } else if ((items.type === 'string' || items.type === 'number') && items.f_is_defect && items.f_item_value[0]) {
1302
+ checkResult = '有隐患'
1303
+ this.result = '有隐患'
1304
+ deviceInfos.push(`${items.f_item_name}:${items.f_item_value[0]}`)
1305
+ this.deviceImgs.push({f_overall_path:items.f_path})
1306
+
1307
+ } else if (items.f_item_name == '金额异常差值') {
1308
+ var deviation = this.$appdata.getSingleValue('金额异常差值允许误差')
1309
+ //tag
1310
+ if (parseFloat(items.f_item_value[0]).toString() != "NaN" && parseFloat(deviation).toString() != "NaN") {
1311
+ if (parseFloat(items.f_item_value[0]) > parseFloat(deviation) || parseFloat(items.f_item_value[0]) < parseFloat(deviation) * -1) {
1312
+ checkResult = '有隐患'
1313
+ this.result = '有隐患'
1314
+ deviceInfos.push(`${items.f_item_name}:${items.f_item_value[0]}`)
1315
+ }
1316
+ }
1317
+ } else if (items.f_item_name == '气量异常差值') {
1318
+ var deviation = this.$appdata.getSingleValue('气量异常差值允许误差')
1319
+ //tag
1320
+ if (parseFloat(items.f_item_value[0]).toString() != "NaN" && parseFloat(deviation).toString() != "NaN") {
1321
+ if (parseFloat(items.f_item_value[0]) > parseFloat(deviation) || parseFloat(items.f_item_value[0]) < parseFloat(deviation) * -1) {
1322
+ checkResult = '有隐患'
1323
+ this.result = '有隐患'
1324
+ deviceInfos.push(`${items.f_item_name}:${items.f_item_value[0]}`)
1325
+ }
1326
+ }
1327
+ }
1328
+ if (!this.config[this.data[device][item].f_device_type].items[items.f_item_name]) {
1329
+ // console.log('this.config[this.data[device][item].f_device_type]', this.config[this.data[device][item].f_device_type])
1330
+ // console.log('this.deviceconfig2', this.deviceconfig2)
1331
+ for (let dev in this.deviceconfig2) {
1332
+ if (this.deviceconfig2[dev].checkname == this.data[device][item].f_device_type) {
1333
+ this.deviceconfig2[dev].items.push({
1334
+ lname: items.f_item_name
1335
+ })
1336
+ }
1337
+ }
1338
+ }
1339
+ //tag)
1340
+ //tag
1341
+ //tag
1342
+ if (items.type === 'selector') {
1343
+ items.selected = []
1344
+ } else if (items.type === 'inputSelector') {
1345
+ items.selected = ''
1346
+ }
1347
+ }
1348
+
1349
+
1350
+ //tag
1351
+ this.$set('deviceCollect.name', f_device_type)
1352
+ this.$set('deviceCollect.value', checkResult)
1353
+ this.$set('deviceCollect.devices', deviceInfos)
1354
+ this.$set('deviceCollect.else', deviceelse)
1355
+ console.log('deviceCollect.devices', this.deviceCollect.devices)
1356
+ console.log('deviceCollect.else', this.deviceCollect.else)
1357
+ console.log('deviceCollect.imgs', this.deviceCollect.imgs)
1358
+ //tag)
1359
+ if (this.deviceCollect.name) {
1360
+ //tag
1361
+ if(this.deviceCollect.value != '正常'){
1362
+ this.deviceCollects.push(JSON.parse(JSON.stringify(this.deviceCollect)))
1363
+ }
1364
+ }
1365
+
1366
+ checkResult = '正常'
1367
+ this.deviceCollect = {}
1368
+ }
1369
+ }
1370
+ }
1371
+ if (this.deviceCollects.length > 0) {
1372
+ this.hasDevice = true
1373
+ }
1374
+ this.deviceconfig2 = this.deviceconfig2.filter(row => {
1375
+ return !(row.checkname == '$configProp' || row.checkname == '$globalProp');
1376
+ })
1377
+ this.ajresult = JSON.parse(this.data.f_defect_content).result
1378
+ this.showimg3 = this.data.f_noanswer_path
1379
+ this.showimg5 = this.data.f_noanswer1_path
1380
+ this.showimg6 = this.data.f_noanswer2_path
1381
+ this.showimg4 = this.data.f_rejectcheck_path
1382
+ this.showimg7 = this.data.f_rejectcheck1_path
1383
+ this.showimg8 = this.data.f_rejectcheck2_path
1384
+ this.paperdata = this.data
1385
+ this.f_user_path = this.paperdata.f_user_pictures ? JSON.parse(this.paperdata.f_user_pictures)[0].f_user_path : ''
1386
+ this.loading = false
1387
+ },
1388
+ imgclose() {
1389
+ this.imgshow = false
1390
+ },
1391
+ putDevices() {
1392
+ ////tag
1393
+ this.$set('data.approve', "true")
1394
+ this.$set('data.writeback', "false")
1395
+ if (Vue.config.safecheck.ApproveConfig != undefined) {
1396
+ if (Vue.config.safecheck.ApproveConfig.approve != undefined) {
1397
+ this.$set('data.approve', Vue.config.safecheck.ApproveConfig.approve)
1398
+ }
1399
+ if (Vue.config.safecheck.ApproveConfig.writeback != undefined) {
1400
+ this.$set('data.writeback', Vue.config.safecheck.ApproveConfig.writeback)
1401
+ }
1402
+ if (Vue.config.safecheck.ApproveConfig.livedispose != undefined) {
1403
+ this.livedispose = Vue.config.safecheck.ApproveConfig.livedispose
1404
+ }
1405
+ if (Vue.config.safecheck.ApproveConfig.hiddendanger != undefined) {
1406
+ if (parseInt(Vue.config.safecheck.ApproveConfig.hiddendanger) >= 5) {
1407
+ this.hiddenDangerImgNumber = 5
1408
+ } else {
1409
+ this.hiddenDangerImgNumber = parseInt(Vue.config.safecheck.ApproveConfig.hiddendanger)
1410
+ }
1411
+ }
1412
+ }
1413
+ //tag
1414
+ //tag)
1415
+ if (!this.item.f_safecheck_type && Vue.config.safecheck.SafecheckType && Vue.config.safecheck.SafecheckType['年度普检']) {
1416
+ this.config = this.extend(this.config, Vue.config.safecheck[Vue.config.safecheck.SafecheckType['年度普检'][this.item.f_check_type]])
1417
+ }else if (!this.item.f_safecheck_type && Vue.config.safecheck.SafecheckType && Vue.config.safecheck.SafecheckType['年度安检']){
1418
+ this.config = this.extend(this.config, Vue.config.safecheck[Vue.config.safecheck.SafecheckType['年度安检'][this.item.f_check_type]])
1419
+ }else if (Vue.config.safecheck.SafecheckType && Vue.config.safecheck[Vue.config.safecheck.SafecheckType[this.item.f_safecheck_type]]){
1420
+ this.config = this.extend(this.config, Vue.config.safecheck[Vue.config.safecheck.SafecheckType[this.item.f_safecheck_type][this.item.f_check_type]])
1421
+ }else {
1422
+ if(this.item.f_check_type == '民用'){
1423
+ this.config = this.extend(this.config, Vue.config.safecheck.DevicesConfig)
1424
+ }else {
1425
+ this.config = this.extend(this.config, Vue.config.safecheck.DevicesSetConfig)
1426
+ }
1427
+ }
1428
+ //遍历安检项配置
1429
+ for (let i in this.config) {
1430
+ //取得安检项索引值
1431
+ let n = this.config[i].index
1432
+ this.devices[n - 1] = {device: i, n: n, checkmust: this.config[i].checkmust}
1433
+ this.$set('data.' + 'device' + n, [])
1434
+ let items = []
1435
+ for (let it in this.config[i].items) {
1436
+ //赋值下拉选项
1437
+ if (this.config[i].items[it].type == 'selector') {
1438
+ for (let op in this.config[i].items[it].options)
1439
+ if (this.config[i].items[it].options[op].isdefault == true) {
1440
+ items.push({
1441
+ f_defect_level: this.config[i].items[it].options[op].level,
1442
+ f_is_defect: this.config[i].items[it].options[op].isdefect,
1443
+ f_item_name: it,
1444
+ f_item_value: this.config[i].items[it].options[op].data,
1445
+ f_path: "",
1446
+ type: "selector"
1447
+ })
1448
+ }
1449
+ }
1450
+ }
1451
+ n = n + 1
1452
+ }
1453
+
1454
+ },
1455
+ showpath(val1, val2) {
1456
+ //tag
1457
+ //tag
1458
+ if (val1) {
1459
+ this.showimg1 = val1
1460
+ this.picturename = val2
1461
+ this.imgshow = true
1462
+ }
1463
+ },
1464
+ showpicture(val1, val2) {
1465
+ //tag
1466
+ if (val2 == '气量异常差值' || val2 == '金额异常差值') {
1467
+ return
1468
+ }
1469
+ for (let i = 0; i < this.devicesAll.length; i++) {
1470
+ for (let j = 0; j < this.devicesAll[i].length; j++) {
1471
+ if (this.devicesAll[i][j].f_device_type == val1) {
1472
+ for (let k = 0; k < this.devicesAll[i][j].f_items.length; k++) {
1473
+ if (this.devicesAll[i][j].f_items[k].f_item_name == val2) {
1474
+ if (!this.devicesAll[i][j].f_items[k].f_is_defect) {
1475
+ return false
1476
+ } else {
1477
+ this.showimg1 = this.devicesAll[i][j].f_items[k].f_path
1478
+ this.showimg2 = this.devicesAll[i][j].f_items[k].f_second_path
1479
+ this.otherDarginShowImgs = []
1480
+ for (let l = 0; l < this.hiddenDangerImgNumber; l++) {
1481
+ let img = {path: ''}
1482
+ if (this.devicesAll[i][j].f_items[k]['f_p' + (l + 1) + '_path']) {
1483
+ img.path = this.devicesAll[i][j].f_items[k]['f_p' + (l + 1) + '_path'] + '?' + Math.random()
1484
+ this.otherDarginShowImgs.push(img)
1485
+ }
1486
+ }
1487
+ this.picturename = '隐患照片'
1488
+ this.imgshow = true
1489
+ return true
1490
+ }
1491
+ }
1492
+ }
1493
+
1494
+ }
1495
+ }
1496
+ }
1497
+ },
1498
+ isred(val1, val2) {
1499
+ //tag
1500
+ if (val2 == '气量异常差值' || val2 == '金额异常差值') {
1501
+ return
1502
+ }
1503
+ for (let i = 0; i < this.devicesAll.length; i++) {
1504
+ for (let j = 0; j < this.devicesAll[i].length; j++) {
1505
+ if (this.devicesAll[i][j].f_device_type == val1) {
1506
+ for (let k = 0; k < this.devicesAll[i][j].f_items.length; k++) {
1507
+ if (this.devicesAll[i][j].f_items[k].f_item_name == val2) {
1508
+ if (!this.devicesAll[i][j].f_items[k].f_is_defect) {
1509
+ return false
1510
+ } else {
1511
+ return true
1512
+ }
1513
+ }
1514
+ }
1515
+
1516
+ }
1517
+ }
1518
+ }
1519
+ },
1520
+ showpicture2() {
1521
+ this.imgshow2 = true
1522
+ },
1523
+ getDeviceValue(val1, val2) {
1524
+ let aa = ''
1525
+ for (let i = 0; i < this.devicesAll.length; i++) {
1526
+ for (let j = 0; j < this.devicesAll[i].length; j++) {
1527
+ if (this.devicesAll[i][j].f_device_type == val1) {
1528
+ for (let k = 0; k < this.devicesAll[i][j].f_items.length; k++) {
1529
+ if (this.devicesAll[i][j].f_items[k].f_item_name == val2) {
1530
+ if (this.devicesAll[i][j].f_items[k].f_item_lists[0]) {
1531
+ for (let l = 0; l < this.devicesAll[i][j].f_items[k].f_item_lists.length; l++) {
1532
+ let val = this.devicesAll[i][j].f_items[k].f_item_lists[l].f_item_value
1533
+ aa += (val === null ? '空' : val) + ' '
1534
+ }
1535
+ return aa
1536
+ }
1537
+ }
1538
+ }
1539
+
1540
+ }
1541
+ }
1542
+ }
1543
+
1544
+ },
1545
+ getDevicePath(val1, val2) {
1546
+ for (let i = 0; i < this.devicesAll.length; i++) {
1547
+ for (let j = 0; j < this.devicesAll[i].length; j++) {
1548
+ if (this.devicesAll[i][j].f_device_type == val1) {
1549
+ for (let k = 0; k < this.devicesAll[i][j].f_items.length; k++) {
1550
+ if (this.devicesAll[i][j].f_items[k].f_item_name == val2) {
1551
+ return this.devicesAll[i][j].f_items[k].f_path
1552
+ }
1553
+ }
1554
+
1555
+ }
1556
+ }
1557
+ }
1558
+
1559
+ },
1560
+ getDeviceAll() {
1561
+ let keyall = Object.keys(this.data)
1562
+ for (let i = 0; i < keyall.length; i++) {
1563
+ //tag)
1564
+ if ((keyall[i].startsWith('f_devices') || keyall[i].startsWith('devices')) && keyall[i] != 'deviceundefined') {
1565
+ this.devicesAll.push(this.data[keyall[i]])
1566
+ //tag
1567
+ }
1568
+ }
1569
+ //tag
1570
+ //tag)
1571
+ this.devicesCollect()
1572
+
1573
+ },
1574
+
1575
+ back() {
1576
+ if (this.role == 'inspect') {
1577
+ if (!this.isStrat) {
1578
+ this.$emit('showback')
1579
+ return
1580
+ } else {
1581
+ this.savePaper(true).then(() => {
1582
+ this.$emit('showback')
1583
+ this.isStrat = false
1584
+ })
1585
+ }
1586
+ } else {
1587
+ if(this.gotoitem){
1588
+ this.$back()
1589
+ return
1590
+ }
1591
+ this.$emit('showback')
1592
+ }
1593
+ },
1594
+ checkIsStart() {
1595
+ alert('asdad')
1596
+ return
1597
+ },
1598
+
1599
+ viewPic(fileName) {
1600
+ //tag
1601
+ if (this.role == 'view') {
1602
+ if (!fileName.endsWith('nopic.png')) {
1603
+ this.pic_to_be_viewed = fileName
1604
+ this.showModal = true
1605
+ }
1606
+ } else {
1607
+ HostApp.viewPic(fileName)
1608
+ }
1609
+ },
1610
+ tick() {
1611
+ this.timer = null
1612
+ this.data.f_offsite_time = Util.toStandardTimeString()
1613
+ this.timer = window.setTimeout(this.tick, 1000)
1614
+ },
1615
+ getRepairState() {
1616
+ let repaired = true
1617
+ this.data.f_defects.forEach((defect) => {
1618
+ repaired = repaired & (defect.f_ratification == '已处理')
1619
+ })
1620
+ return repaired
1621
+ },
1622
+ verifyRepairDefects() {
1623
+ this.data.f_repair_date = Util.toStandardTimeString()
1624
+ this.data.f_repaired = this.getRepairState() ? '已修' : '在修'
1625
+ },
1626
+ genuineSave(saveOnly) {
1627
+ HostApp.__this__.save(saveOnly)
1628
+ if (!saveOnly)
1629
+ HostApp.__this__.disableTimer()
1630
+ HostApp.__callback__ = null
1631
+ HostApp.__this__ = null
1632
+ },
1633
+ setUrgency() {
1634
+ this.data.f_defect_urgency = 'Z'
1635
+ let that = this
1636
+ this.data.f_defects.forEach(function (defect) {
1637
+ if (that.data.f_defect_urgency > defect.f_defect_level.charAt(0))
1638
+ that.data.f_defect_urgency = defect.f_defect_level.charAt(0)
1639
+ })
1640
+ if (this.data.f_defect_urgency == 'Z')
1641
+ this.data.f_defect_urgency = null
1642
+ },
1643
+ disableTimer() {
1644
+ if (this.timer) {
1645
+ window.clearTimeout(this.timer)
1646
+ this.timer = null
1647
+ }
1648
+ },
1649
+ loaded(paper) {
1650
+ if (!paper.hasOwnProperty('id')) {
1651
+ this.$showMessage("该安检单在手机上已经不存在,可能是卸载过程序。可以进入重新安检,或返回安检计划。")
1652
+ this.init()
1653
+ } else {
1654
+ Util.booleanFilter(paper)
1655
+ HostApp.__this__.$set('data', paper)
1656
+ HostApp.__this__.$goto('paper-state', {}, 'paper-router')
1657
+ // 如果打回重检则重新计时
1658
+ //tag
1659
+ if (HostApp.__this__.role == 'inspect'
1660
+ && HostApp.__this__.data.f_approved
1661
+ && HostApp.__this__.data.f_approved == '打回') {
1662
+ //tag
1663
+ HostApp.__this__.data.f_onsite_time = Util.toStandardTimeString()
1664
+ HostApp.__this__.tick()
1665
+ }
1666
+ }
1667
+ HostApp.__callback__ = null
1668
+ HostApp.__this__ = null
1669
+ },
1670
+ S4() {
1671
+ return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
1672
+ },
1673
+ init() {
1674
+ this.data.f_noplan_item_id = this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4()
1675
+ this.data.ename = Vue.user.ename
1676
+ this.data.f_outlets = Vue.user.f_parentname
1677
+ this.data.f_meetunit = Vue.user.orgpathnames
1678
+ this.data.orgpathstr = Vue.user.orgpathstr
1679
+ this.data.f_check_item_id = this.item.id
1680
+ this.data.f_check_plan_id = this.f_plan_id
1681
+ this.data.f_checker_id = Vue.user.id
1682
+ this.data.f_checker_name = Vue.user.name
1683
+ this.data.f_check_type = this.item.f_user_type
1684
+ this.data.f_subcompany = this.item.f_subcompany
1685
+ this.data.f_approved = this.item.f_approved
1686
+ this.data.f_repair_approved = this.item.f_repair_approved
1687
+ this.data.f_no_checkplan = this.item.f_no_checkplan
1688
+ this.data.f_approved = this.item.f_approved
1689
+ this.data.f_filialeid = this.item.f_filialeid
1690
+ this.data.f_orgstr = this.item.f_orgstr
1691
+ this.data.version = this.item.version
1692
+ this.$set('data.f_meters', this.item.f_plan_meters)
1693
+ this.$set('data.f_userinfo_code', this.item.f_userinfo_code)
1694
+ // 安检状态
1695
+ this.$set('data.f_entry_status', '入户')
1696
+ this.$set('data.f_usegas', '已使用')
1697
+ this.$set('data.f_state', this.item.f_state)
1698
+ // 用户信息
1699
+ this.$set('data.f_user_name', this.item.f_user_name)
1700
+ this.$set('data.f_user_phone', this.item.f_user_phone)
1701
+ this.$set('data.f_userinfoid', this.item.f_userinfoid)
1702
+ this.$set('data.f_address', this.item.f_address)
1703
+ this.$set('data.f_card_id', this.item.f_card_id)
1704
+ this.$set('data.f_area', this.item.f_area)
1705
+ this.$set('data.f_street', this.item.f_street)
1706
+ this.$set('data.f_room', this.item.f_room)
1707
+ this.$set('data.f_building', this.item.f_building)
1708
+ this.$set('data.f_unit', this.item.f_unit)
1709
+ this.$set('data.f_floor', this.item.f_floor)
1710
+ this.$set('data.f_residential_area', this.item.f_residential_area)
1711
+ this.$set('data.f_idnumber', this.item.f_idnumber)
1712
+ this.$set('data.f_comments', this.item.f_comments)
1713
+ this.$set('data.f_userproperties', this.item.f_userproperties)
1714
+ // 处置方式
1715
+ this.$set('data.f_no_gas_device', false)
1716
+ this.$set('data.f_close_valve', false)
1717
+ this.$set('data.f_unload_battery', false)
1718
+ if (this.data.f_check_item_id == '' && this.item.f_no_checkplan == '无计划安检') {
1719
+ this.data.f_check_item_id = this.data.f_noplan_item_id
1720
+ }
1721
+
1722
+ //房屋结构
1723
+ // this.$set('data.f_room_style', '多层')
1724
+ //供暖方式
1725
+ // this.$set('data.f_heating_style', '热力公司集中供暖')
1726
+ if (this.item.f_plan_meters) {
1727
+ for (let de in this.devices) {
1728
+ this.$set('data.device' + this.devices[de].n, [])
1729
+ for (let i = 0; i < this.item.f_plan_meters.length; i++) {
1730
+ if (this.item.f_plan_meters[i].f_meter_type) {
1731
+ if (this.devices[de].device == "燃气表" && this.item.f_plan_meters[i].f_meter_type.indexOf('机表') > 0) {
1732
+ delete this.config['燃气表']['items']['累计购气量']
1733
+ this.data['device' + this.devices[de].n].push({
1734
+ f_device_type: "燃气表",
1735
+ f_items: [{
1736
+ f_defect_level: null,
1737
+ f_device_id: "",
1738
+ f_is_defect: "",
1739
+ f_item_name: "表品牌",
1740
+ f_item_value: this.item.f_plan_meters[i].f_aliasname,
1741
+ f_path: "",
1742
+ type: "string"
1743
+ },
1744
+ {
1745
+ f_defect_level: null,
1746
+ f_device_id: "",
1747
+ f_is_defect: "",
1748
+ f_item_name: "位置",
1749
+ f_item_value: this.item.f_plan_meters[i].f_weizhi,
1750
+ f_path: "",
1751
+ type: "selector"
1752
+ },
1753
+ {
1754
+ f_defect_level: null,
1755
+ f_device_id: "",
1756
+ f_is_defect: "",
1757
+ f_item_name: "表号",
1758
+ f_item_value: this.item.f_plan_meters[i].f_meter_no,
1759
+ f_path: "",
1760
+ type: "number"
1761
+ },
1762
+ {
1763
+ f_defect_level: null,
1764
+ f_device_id: "",
1765
+ f_is_defect: "",
1766
+ f_item_name: "表封号",
1767
+ f_item_value: this.item.f_plan_meters[i].f_metertitles,
1768
+ f_path: "",
1769
+ type: "number"
1770
+ },
1771
+ {
1772
+ f_defect_level: null,
1773
+ f_device_id: "",
1774
+ f_is_defect: "",
1775
+ f_item_name: "表型号",
1776
+ f_item_value: this.item.f_plan_meters[i].f_diaphgram_size,
1777
+ f_path: "",
1778
+ type: "selector"
1779
+ },
1780
+ {
1781
+ f_defect_level: null,
1782
+ f_device_id: "",
1783
+ f_is_defect: "",
1784
+ f_item_name: "表底数",
1785
+ f_item_value: this.item.f_plan_meters[i].f_prior_reading,
1786
+ f_path: "",
1787
+ type: "number"
1788
+ }
1789
+ ]
1790
+ })
1791
+ } else if (this.devices[de].device == "燃气表") {
1792
+ delete this.config['燃气表']['items']['表底数']
1793
+ this.data['device' + this.devices[de].n].push({
1794
+ f_device_type: "燃气表",
1795
+ f_items: [{
1796
+ f_defect_level: null,
1797
+ f_device_id: "",
1798
+ f_is_defect: "",
1799
+ f_item_name: "表品牌",
1800
+ f_item_value: this.item.f_plan_meters[i].f_aliasname,
1801
+ f_path: "",
1802
+ type: "string"
1803
+ },
1804
+ {
1805
+ f_defect_level: null,
1806
+ f_device_id: "",
1807
+ f_is_defect: "",
1808
+ f_item_name: "位置",
1809
+ f_item_value: this.item.f_plan_meters[i].f_weizhi,
1810
+ f_path: "",
1811
+ type: "selector"
1812
+ },
1813
+ {
1814
+ f_defect_level: null,
1815
+ f_device_id: "",
1816
+ f_is_defect: "",
1817
+ f_item_name: "表号",
1818
+ f_item_value: this.item.f_plan_meters[i].f_meter_no,
1819
+ f_path: "",
1820
+ type: "number"
1821
+ },
1822
+ {
1823
+ f_defect_level: null,
1824
+ f_device_id: "",
1825
+ f_is_defect: "",
1826
+ f_item_name: "表封号",
1827
+ f_item_value: this.item.f_plan_meters[i].f_metertitles,
1828
+ f_path: "",
1829
+ type: "number"
1830
+ },
1831
+ {
1832
+ f_defect_level: null,
1833
+ f_device_id: "",
1834
+ f_is_defect: "",
1835
+ f_item_name: "表型号",
1836
+ f_item_value: this.item.f_plan_meters[i].f_diaphgram_size,
1837
+ f_path: "",
1838
+ type: "selector"
1839
+ },
1840
+ {
1841
+ f_defect_level: null,
1842
+ f_device_id: "",
1843
+ f_is_defect: "",
1844
+ f_item_name: "累计购气量",
1845
+ f_item_value: this.item.f_plan_meters[i].f_prior_reading,
1846
+ f_path: "",
1847
+ type: "number"
1848
+ }
1849
+ ]
1850
+ })
1851
+ }
1852
+ }
1853
+ }
1854
+ }
1855
+ }
1856
+
1857
+ this.$goto('paper-state', {}, 'paper-router')
1858
+ },
1859
+ extend(initalObj, finalObj) {
1860
+ var obj = finalObj || {};
1861
+ for (var i in initalObj) {
1862
+ var prop = initalObj[i];
1863
+
1864
+ // 避免相互引用对象导致死循环,如initalObj.a = initalObj的情况
1865
+ if (prop === obj) {
1866
+ continue;
1867
+ }
1868
+
1869
+ if (typeof prop === 'object') {
1870
+ if (obj[i]) {
1871
+ this.extend(obj[i], prop)
1872
+ } else {
1873
+ obj[i] = prop;
1874
+ }
1875
+ }
1876
+ }
1877
+ return obj;
1878
+ },
1879
+ //获取当前时间
1880
+ getNowFormatDate() {
1881
+ var date = new Date();
1882
+ var seperator1 = "-";
1883
+ var seperator2 = ":";
1884
+ var month = date.getMonth() + 1;
1885
+ var strDate = date.getDate();
1886
+ if (month >= 1 && month <= 9) {
1887
+ month = "0" + month;
1888
+ }
1889
+ if (strDate >= 0 && strDate <= 9) {
1890
+ strDate = "0" + strDate;
1891
+ }
1892
+ var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
1893
+ + " " + date.getHours() + seperator2 + date.getMinutes()
1894
+ + seperator2 + date.getSeconds();
1895
+ return currentdate;
1896
+ }
1897
+ },
1898
+ ready() {
1899
+ asyncReady(this).then(() => {
1900
+ setTimeout(() => {
1901
+ this.loading = false;
1902
+ }, 10000)
1903
+ this.getuserinfodevice()
1904
+ this.putDevices()
1905
+ this.showAudit()
1906
+ this.newConfig = this.$appdata.getSingleValue('配置中心获取文件') ? this.$appdata.getSingleValue('配置中心获取文件') : '否';
1907
+ if (this.item.f_state != '未检' || this.item.f_no_checkplan == '无计划安检' || this.item.f_no_checkplan == '复检') {
1908
+ if (this.role != 'inspect') {
1909
+ let that = this
1910
+ let id
1911
+ if (this.role == 'view') {
1912
+ id = this.item.id
1913
+ } else if (this.role == 'androidview') {
1914
+ id = this.item.f_paper_id
1915
+ }
1916
+ this.$resetpost(`api/af-safecheck/logic/path_getCheckPaper`, {data: {id:id}}).then((respanse) => {
1917
+ //tag
1918
+ if (respanse.data.length != 0) {
1919
+ // 包含 其它 特殊处理的数组
1920
+ // 对应位置
1921
+ that.data = Object.assign(that.data, respanse.data[0])
1922
+ if (respanse.data[0].f_devices) {
1923
+ for (let da in that.devices) {
1924
+ that.$set('data.device' + that.devices[da].n, [])
1925
+ }
1926
+ respanse.data[0].f_devices.forEach((item) => {
1927
+ for (let de in that.devices) {
1928
+ if (that.devices[de].device == item.f_device_type) {
1929
+ item.f_items.forEach((f_item) => {
1930
+ //tag
1931
+ //tag
1932
+ let itemValues = []
1933
+ f_item.f_item_lists.forEach((tempItem) => {
1934
+ //tag
1935
+ if (tempItem.f_item_value !== 'null') {
1936
+ itemValues.push(tempItem.f_item_value)
1937
+ }
1938
+ })
1939
+ f_item.f_item_value = itemValues
1940
+ })
1941
+ that.data['device' + that.devices[de].n].push({
1942
+ f_device_type: item.f_device_type,
1943
+ f_items: item.f_items
1944
+ })
1945
+ }
1946
+ }
1947
+ })
1948
+ }
1949
+ Util.replaceFalse(that.data)
1950
+ Util.booleanFilter(that.data)
1951
+ if (this.role == 'view') {
1952
+ Util.ratifyPics(that.data)
1953
+ Util.ratifyPics(that.picture)
1954
+ } else {
1955
+ Util.androidRatifyPics(that.data, this.$androidUtil.getProxyUrl())
1956
+ }
1957
+ //tag
1958
+ }
1959
+ // this.$goto('paper-message-blank', {userinfo:this.data,devices:this.devices,config:this.config,role:this.role}, 'self')
1960
+ this.isshow = true
1961
+ //tag
1962
+ //tag)
1963
+ console.log('Vue.config.safecheck.DevicesConfig', Vue.config.safecheck.DevicesConfig)
1964
+ // 如果没有用户类型 默认按民用配置走
1965
+ if (this.data.f_check_type == '非民用') {
1966
+ this.deviceconfig = JSON.parse(JSON.stringify(Vue.config.safecheck.DevicesSetConfig))
1967
+ if (typeof this.deviceconfig === 'string') {
1968
+ this.deviceconfig = JSON.parse(this.deviceconfig)
1969
+ }
1970
+ }else{
1971
+ this.deviceconfig = JSON.parse(JSON.stringify(Vue.config.safecheck.DevicesConfig))
1972
+ if (typeof this.deviceconfig === 'string') {
1973
+ this.deviceconfig = JSON.parse(this.deviceconfig)
1974
+ }
1975
+ }
1976
+ if (this.data.f_collection_type == '按金额') {
1977
+ if (this.deviceconfig["燃气表"]){
1978
+ let aaa = Object.assign({}, this.config2["燃气表"].items, this.deviceconfig["燃气表"].items)
1979
+ this.deviceconfig["燃气表"].items = aaa
1980
+ }
1981
+ } else {
1982
+ if (this.deviceconfig["燃气表"]){
1983
+ let aaa = Object.assign({}, this.config["燃气表"].items, this.deviceconfig["燃气表"].items)
1984
+ this.deviceconfig["燃气表"].items = aaa
1985
+ }
1986
+ }
1987
+ this.deviceconfig2 = ObjConfig.getObjConfig(this.deviceconfig)
1988
+ this.deviceconfig2[0].items = jsonSort(this.deviceconfig2[0].items, "index")
1989
+ this.deviceconfig2[1].items = jsonSort(this.deviceconfig2[1].items, "index")
1990
+ this.deviceconfig2 = jsonSort(this.deviceconfig2, "index")
1991
+ this.getDeviceAll()
1992
+
1993
+ }
1994
+ ).catch(
1995
+ (respanse) => {
1996
+ //tag
1997
+ alert('查找安检单失败')
1998
+ this.loading = false
1999
+ })
2000
+ }
2001
+ }
2002
+ })
2003
+ },
2004
+ watch: {
2005
+ // 'isUpload'(val){
2006
+ // //tag
2007
+ // }
2008
+ },
2009
+ destroyed() {
2010
+ //tag
2011
+ this.disableTimer()
2012
+ }
2013
+ }
2014
+
2015
+ </script>
2016
+ <style scoped>
2017
+ .table-striped thead tr th {
2018
+ background-color: rgb(223, 237, 251);
2019
+ padding: 10px;
2020
+ border-left: solid 0px #dae4f2;
2021
+ border-top: solid 1px #dae4f2;
2022
+ border-right: none;
2023
+ border-bottom: none;
2024
+ text-align: center;
2025
+ color: black;
2026
+ }
2027
+ </style>