safecheck-client 4.0.0-32 → 4.0.0-34

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.
@@ -1,792 +1,795 @@
1
- <template>
2
- <div class="flex-row" v-show="showinfo1">
3
- <div class="basic-main">
4
- <criteria-paged :model="model" v-ref:paged @sort="sort">
5
- <criteria partial='criteria' class="search_area" @condition-changed='$parent.selfSearch' v-ref:criteria>
6
- <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
7
- <div class="row">
8
- <div class="form-group col-sm-2" >
9
- <label class="font_normal_body">客户编号</label>
10
- <input type="text" class="input_search" v-model="model.f_userinfo_code"
11
- style="width: 60%" placeholder="客户编号" condition="f_userinfo_code='{}'">
12
- </div>
13
- <div class="form-group col-sm-2" >
14
- <label class="font_normal_body">客户名称</label>
15
- <input type="text" class="input_search" v-model="model.f_user_name"
16
- style="width: 60%" placeholder="客户名称" condition="f_user_name like '%{}%'">
17
- </div>
18
- <div class="form-group col-sm-2" >
19
- <label class="font_normal_body">客户电话</label>
20
- <input type="text" class="input_search" v-model="model.f_user_phone"
21
- style="width: 60%" placeholder="客户电话" condition="f_user_phone like '%{}%'">
22
- </div>
23
- <div class="form-group col-sm-2" >
24
- <label class="font_normal_body">客户表号</label>
25
- <input type="text" class="input_search" v-model="model.f_meternumber"
26
- style="width: 60%" placeholder="客户表号" condition="f_meternumber like '%{}%'">
27
- </div>
28
- <div class="form-group col-sm-2" >
29
- <label class="font_normal_body">小&emsp;&emsp;区</label>
30
- <input type="text" class="input_search" v-model="model.f_residential_area"
31
- style="width: 60%" placeholder="小区" condition="f_residential_area like '%{}%'">
32
- </div>
33
- <div class="form-group col-sm-2" >
34
- <label class="font_normal_body">详细地址</label>
35
- <input type="text" class="input_search" v-model="model.f_address"
36
- style="width: 60%" placeholder="详细地址" condition="f_address like '%{}%'">
37
- </div>
38
- <div class="form-group col-sm-2" style="width: auto;margin-top:8px;float: right">
39
-
40
- <export-excel :data="$parent.$parent.searchData"
41
- :field="$parent.$parent.excelHeaders"
42
- :choose-col="true"
43
- sqlurl="api/af-safecheck/logic/exportfile" sql-name="查找安检单" template-name='安检记录明细'></export-excel>
44
- <button class="button_spacing button_search" @click="$parent.$parent.showaudio()" v-if="$parent.$parent.audioshow">隐藏</button>
45
-
46
- <button class="button_spacing button_search" @click="search()">查询</button>
47
- <div style="float: right" class="button_spacing"
48
- :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
49
- @click="$parent.$parent.hidden()"></div>
50
- </div>
51
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
52
- <label class="font_normal_body">安检计划</label>
53
- <input type="text" class="input_search" v-model="$parent.$parent.model.f_check_plan.f_plan_name"
54
- @click="$parent.$parent.showChooser"
55
- style="width: 60%" placeholder="安检计划" readonly="readonly">
56
- </div>
57
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
58
- <label class="font_normal_body">开始时间</label>
59
- <datepicker
60
- :value.sync="model.f_check_start"
61
- placeholder='开始时间' style="width: 60%"
62
- :disabled-days-of-week="[]"
63
- :format="'yyyy-MM-dd'"
64
- :show-rest-button="reset"
65
- v-model="model.f_check_start"
66
- condition="f_offsite_time > ='{} 00:00:00'">
67
- </datepicker>
68
- </div>
69
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
70
- <label class="font_normal_body">结束时间</label>
71
- <datepicker
72
- :value.sync="model.f_check_end"
73
- placeholder='结束时间' style="width: 60%"
74
- :disabled-days-of-week="[]"
75
- :format="'yyyy-MM-dd'"
76
- :show-rest-button="reset"
77
- v-model="model.f_check_end"
78
- condition="f_offsite_time <= '{} 23:59:59'">
79
- </datepicker>
80
- </div>
81
-
82
-
83
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
84
-
85
- <label class="font_normal_body">安检类型</label>
86
- <v-select :value.sync="model.f_safecheck_type" v-model='model.f_safecheck_type'
87
- :value-single="true" style="width: 60%"
88
- class="select_list select"
89
- :options='$parent.$parent.safetype' placeholder='安检类型'
90
- close-on-select
91
- condition="f_safecheck_type = '{}'"></v-select>
92
- </div>
93
-
94
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
95
-
96
- <label class="font_normal_body">客户类型</label>
97
- <v-select :value.sync="model.f_check_type" v-model='model.f_check_type'
98
- :value-single="true" style="width: 60%"
99
- class="select_list select"
100
- :options='$parent.$parent.checktype' placeholder='客户类型'
101
- close-on-select
102
- condition="f_check_type = '{}'"></v-select>
103
- </div>
104
-
105
-
106
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
107
- <label class="font_normal_body">安检状态</label>
108
- <v-select id="f_entry"
109
- class="select_list select"
110
- placeholder='安检状态' style="width: 60%"
111
- v-model='model.f_entry'
112
- :value.sync="$parent.$parent.model.f_entry"
113
- :options='$parent.$parent.f_entry_status'
114
- condition=""
115
- :value-single="true"
116
- close-on-select clear-button></v-select>
117
- </div>
118
- <div class="col-sm-4 form-group" v-show="$parent.$parent.criteriaShow" style="margin: 0">
119
- <role-selector-safe
120
- role-name="安检员"
121
- role-lable="安&nbsp;检&nbsp;员&nbsp;"
122
- @re-res="$parent.$parent.getRes"
123
- :value.sync="model.f_checker_id"
124
- v-model="model.f_checker_id"
125
- condition="f_checker_name = '{}'">
126
- </role-selector-safe>
127
- </div>
128
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
129
- <label class="font_normal_body">片&emsp;&emsp;区</label>
130
- <v-select class="select_list select"
131
- placeholder='片区/管理站' style="width: 60%"
132
- :value.sync="model.f_slice_area" v-model="model.f_slice_area"
133
- :options='$parent.$parent.sliceArea'
134
- filer-key="name"
135
- close-on-select clear-button
136
- condition="f_slice_area='{}'"
137
- @change="$parent.$parent.getmeterbook(model.f_slice_area)"
138
- :value-single="true">
139
- </v-select>
140
- </div>
141
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
142
- <label class="font_normal_body">抄&ensp;表&ensp;册</label>
143
- <v-select class="select_list select"
144
- placeholder='抄表册' style="width: 60%"
145
- :value.sync="model.f_meter_book_num" v-model="model.f_meter_book_num"
146
- :options='$parent.$parent.cbc'
147
- filer-key="name"
148
- close-on-select clear-button
149
- condition="f_meter_book_num={}"
150
- :value-single="true">
151
- </v-select>
152
- </div>
153
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
154
- <label class="font_normal_body">省&ensp;市&ensp;区</label>
155
- <v-select class="select_list select"
156
- placeholder='请选择' style="width: 60%"
157
- :value.sync="model.f_pcd" v-model="model.f_pcd"
158
- :options='$parent.$parent.pcds'
159
- filer-key="name"
160
- close-on-select clear-button
161
- condition="f_pcd='{}'"
162
- :value-single="true">
163
- </v-select>
164
- </div>
165
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
166
- <label class="font_normal_body">开户时间</label>
167
- <datepicker
168
- :value.sync="model.f_check_gasstart"
169
- placeholder='开始时间' style="width: 60%"
170
- :disabled-days-of-week="[]"
171
- :format="'yyyy-MM-dd'"
172
- :show-rest-button="reset"
173
- v-model="model.f_check_gasstart"
174
- condition="f_gas_date > ='{} 00:00:00'">
175
- </datepicker>
176
- </div>
177
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
178
- <label class="font_normal_body">开户时间</label>
179
- <datepicker
180
- :value.sync="model.f_check_gasend"
181
- placeholder='结束时间' style="width: 60%"
182
- :disabled-days-of-week="[]"
183
- :format="'yyyy-MM-dd'"
184
- :show-rest-button="reset"
185
- v-model="model.f_check_gasend"
186
- condition="f_gas_date <= '{} 23:59:59'">
187
- </datepicker>
188
- </div>
189
- <div class="form-group col-sm-2" v-show="$parent.$parent.safeAudit && $parent.$parent.criteriaShow ">
190
- <label class="font_normal_body">审&ensp;核&ensp;人</label>
191
- <input type="text" class="input_search" v-model="model.f_approved_by"
192
- style="width: 60%" placeholder="审核人" condition="f_approved_by like '%{}%'">
193
- </div>
194
- <div class="form-group col-sm-2" v-show="$parent.$parent.safeAudit && $parent.$parent.criteriaShow ">
195
- <label class="font_normal_body">审核时间</label>
196
- <datepicker
197
- :value.sync="model.f_approved_timestart"
198
- placeholder='开始时间' style="width: 60%"
199
- :disabled-days-of-week="[]"
200
- :format="'yyyy-MM-dd'"
201
- :show-rest-button="reset"
202
- v-model="model.f_approved_timestart"
203
- condition="f_approved_time > ='{} 00:00:00'">
204
- </datepicker>
205
- </div>
206
- <div class="form-group col-sm-2" v-show="$parent.$parent.safeAudit && $parent.$parent.criteriaShow ">
207
- <label class="font_normal_body">审核时间</label>
208
- <datepicker
209
- :value.sync="model.f_approved_timeend"
210
- placeholder='结束时间' style="width: 60%"
211
- :disabled-days-of-week="[]"
212
- :format="'yyyy-MM-dd'"
213
- :show-rest-button="reset"
214
- v-model="model.f_approved_timeend"
215
- condition="f_approved_time <= '{} 23:59:59'">
216
- </datepicker>
217
- </div>
218
- <div class="form-group col-sm-2" v-show="$parent.$parent.safeAudit &&$parent.$parent.criteriaShow">
219
- <label class="font_normal_body" title="参数管理:安检审核状态">审核状态</label>
220
- <v-select class="select_list select"
221
- placeholder='请选择' style="width: 60%"
222
- :value.sync="model.f_approved" v-model="model.f_approved"
223
- :options='$parent.$parent.approveds'
224
- filer-key="name"
225
- close-on-select clear-button
226
- condition="f_approved='{}'"
227
- :value-single="true">
228
- </v-select>
229
- </div>
230
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
231
- <label class="font_normal_body">气表品牌</label>
232
- <v-select
233
- class="select_list select"
234
- placeholder='气表品牌' style="width: 60%"
235
- v-model='model.tableBrand'
236
- :value.sync="model.tableBrand"
237
- :options='$parent.$parent.tableBrands'
238
- condition="f_meter_brand = '{}'"
239
- :value-single="true"
240
- close-on-select clear-button></v-select>
241
- </div>
242
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
243
- <label class="font_normal_body">有无计划</label>
244
- <v-select class="select_list select"
245
- placeholder='请选择' style="width: 60%"
246
- :value.sync="model.f_no_checkplan" v-model="model.f_no_checkplan"
247
- :options='$parent.$parent.no_checkplans'
248
- filer-key="name"
249
- close-on-select clear-button
250
- condition="f_no_checkplan='{}'"
251
- :value-single="true">
252
- </v-select>
253
- </div>
254
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
255
- <label class="font_normal_body">未用燃气</label>
256
- <v-select class="select_list select"
257
- placeholder='请选择' style="width: 60%"
258
- :value.sync="model.f_usegas" v-model="model.f_usegas"
259
- :options='$parent.$parent.usegas'
260
- filer-key="name"
261
- close-on-select clear-button
262
- condition="f_usegas='{}'"
263
- :value-single="true">
264
- </v-select>
265
- </div>
266
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
267
- <label class="font_normal_body">客户卡号</label>
268
- <input type="text" class="input_search" v-model="model.f_card_id"
269
- style="width: 60%" placeholder="客户卡号" condition="f_card_id like '%{}%'">
270
- </div>
271
- <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
272
- <label class="font_normal_body">距上次安检天数</label>
273
- <input type="number" class="input_search" v-model="model.f_check_date"
274
- style="width: 60%" placeholder="距上次安检天数" >
275
- </div>
276
- </div>
277
- <modal :show.sync="$parent.$parent.showModal" v-ref:modal backdrop="false">
278
- <div slot="modal-header" class="modal-header">
279
- <h4 class="modal-title">
280
- 选择计划
281
- </h4>
282
- </div>
283
- <div slot="modal-body" class="modal-body">
284
- <plan-chooser :f.sync="$parent.$parent.fun" v-ref:chooser></plan-chooser>
285
- </div>
286
- <div slot="modal-footer" class="modal-footer" style="text-align: center">
287
- <button class="button_search" @click="$parent.$parent.ok">确认</button>
288
- <button class="button_search" @click="$parent.$parent.cancel">取消</button>
289
- </div>
290
- </modal>
291
- </div>
292
- </criteria>
293
- <data-grid class="list_area table_sy" style="overflow: hidden" :model="model" partial='list' v-ref:grid>
294
- <template partial='head'>
295
- <tr>
296
- <th>
297
- <nobr>客户编号</nobr>
298
- </th>
299
- <th>
300
- <nobr>客户名称</nobr>
301
- </th>
302
- <th>
303
- <nobr>客户表号</nobr>
304
- </th>
305
- <th>
306
- <nobr>气表品牌</nobr>
307
- </th>
308
- <th>
309
- <nobr>客户电话</nobr>
310
- </th>
311
- <th>
312
- <nobr>客户类型</nobr>
313
- </th>
314
- <th>
315
- <nobr>客户地址</nobr>
316
- </th>
317
- <th>
318
- <nobr>安检状态</nobr>
319
- </th>
320
- <th>
321
- <nobr>计划名称</nobr>
322
- </th>
323
- <th>
324
- <nobr>用气状态</nobr>
325
- </th>
326
- <th>
327
- <data-order field="f_offsite_time" name="安检时间"></data-order>
328
- </th>
329
- <th>
330
- <nobr>安检员</nobr>
331
- </th>
332
- <th>
333
- <nobr>备注</nobr>
334
- </th>
335
- <th>
336
- <nobr>开户时间</nobr>
337
- </th>
338
- <th v-if="$parent.$parent.$parent.safeAudit">
339
- <nobr>审核人</nobr>
340
- </th>
341
- <th v-if="$parent.$parent.$parent.safeAudit">
342
- <nobr>审核起始</nobr>
343
- </th>
344
- <th v-if="$parent.$parent.$parent.safeAudit">
345
- <nobr>审核结束</nobr>
346
- </th>
347
- <th v-if="$parent.$parent.$parent.safeAudit">
348
- <nobr>审核状态</nobr>
349
- </th>
350
- <th v-if="$parent.$parent.$parent.safeAudit">
351
- <nobr>审核未通过原因</nobr>
352
- </th>
353
- <th>
354
- <nobr>操作</nobr>
355
- </th>
356
- <th v-if="$parent.$parent.$parent.audioshow">
357
- <nobr>录音</nobr>
358
- </th>
359
- </tr>
360
- </template>
361
- <template partial='body'>
362
-
363
- <td style="text-align: center">{{row.f_userinfo_code}}</td>
364
- <td style="text-align: center">{{row.f_user_name}}</td>
365
- <td style="text-align: center">{{row.f_meternumber}}</td>
366
- <td style="text-align: center">{{row.f_meter_brand}}</td>
367
- <td style="text-align: center">{{row.f_user_phone}}</td>
368
- <td style="text-align: center">{{row.f_check_type}}</td>
369
-
370
- <td style="text-align: center">{{ row.f_address }}</td>
371
- <td style="text-align: center">{{ row.f_entry_status }}</td>
372
- <td style="text-align: center">{{ row.f_plan_name }}</td>
373
- <td style="text-align: center">{{ row.f_usegas }}</td>
374
- <td style="text-align: center">{{ row.f_offsite_time }}</td>
375
- <td style="text-align: center">{{ row.f_checker_name }}</td>
376
- <td style="text-align: center">{{ row.f_repair_approved_note }}</td>
377
- <td style="text-align: center">{{ row.f_gas_date }}</td>
378
- <td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">{{ row.f_approved_by }}</td>
379
- <td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">{{ row.f_approvedstart_time }}</td>
380
- <td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">{{ row.f_approved_time }}</td>
381
- <td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">
382
- {{ row.f_approved ? row.f_approved : '未审核' }}
383
- </td>
384
- <td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">
385
- {{row.f_approved_note}}
386
- </td>
387
- <td style="text-align: center">{{row.f_gas_state}}</td>
388
- <td style="text-align: center">
389
- <button class="button_spacing button_search-1" @click='$parent.$parent.$parent.change(row)'>查看</button>
390
-
391
-
392
- </td>
393
- <td style="text-align: center" v-if="$parent.$parent.$parent.audioshow">
394
- <!-- <button class="button_spacing button_search-1" @click='$parent.$parent.$parent.change(row)'>查看</button>-->
395
- <audio controls="controls" v-if="row.f_recording1_path">
396
- <source type="audio/mpeg" :src="'rs/audio/file/'+row.f_recording1_path">
397
- </audio>
398
- <!--<button type="button" class="button_new-1 button_spacing" data-toggle="dropdown"
399
- @click="$parent.$parent.$parent.print(row)">
400
- 打印
401
- </button>-->
402
- </td>
403
- </template>
404
- </data-grid>
405
- </criteria-paged>
406
- <check-msg v-if="showcheckmsg" :show="showcheckmsg" :data="checkInfo"></check-msg>
407
- </div>
408
- </div>
409
- <new-check-paper v-if="showinfo2" :f_plan_id="shouinfodata.f_check_plan_id" :item="shouinfodata" :role="'view'" v-on:showback="showback1"></new-check-paper>
410
- <new-check-paper-temp v-if="showinfo3" :f_plan_id="shouinfodata.f_check_plan_id" :item="shouinfodata" :role="'view'" v-on:showback="showback2"></new-check-paper-temp>
411
- </template>
412
-
413
- <script>
414
- import {PagedList} from 'vue-client'
415
- import co from 'co'
416
- import * as Util from '../../../components/Util'
417
- import HttpResetClass from "vue-client/src/plugins/HttpResetClass";
418
-
419
-
420
- let select = function* (self) {
421
- let http = new HttpResetClass()
422
- let getGasman = yield http.load('POST', '/rs/search', {
423
- source: 'this.getParentByType($department$).getAllChildrens().where(row.getAttributes().get($rolestr$).indexOf($安检员$) != -1))',
424
- userid: self.$login.f.id
425
- }, {resolveMsg: null, rejectMsg: null})
426
- ////tag
427
- self.checkersid.push({label: '全部', value: ''})
428
- getGasman.data.forEach((checker) => {
429
- self.checkersid.push({label: checker.name, value: checker.id})
430
- })
431
- }
432
-
433
- export default {
434
- title: '安检结果查看',
435
- data() {
436
- let model = new PagedList('api/af-safecheck/sql/查找安检单', 20, {
437
- f_plan_id: 'this.f_plan_id',
438
- f_approved: 'this.f_approved',
439
- f_entry_status: 'this.f_entry',
440
- f_no_checkplan: 'this.f_no_checkplan',
441
- f_filialeid: 'this.f_filialeid',
442
- orderitem: "'f_offsite_time desc'"
443
- })
444
- model.f_check_type = ''
445
- model.f_plan_id = ''
446
- model.f_approved = ''
447
- model.f_entry = ''
448
- model.f_no_checkplan = ''
449
- model.f_filialeid = `('${this.$login.f.orgid}')`
450
- //model.f_check_type='民用'
451
- // let searchData={
452
- // f_plan_id: this.model.f_checker_id==undefined?"":this.model.f_checker_id,
453
- // f_approved: this.model.f_approved,
454
- // f_entry_status: this.model.f_entry,
455
- // f_no_checkplan:this.model.f_no_checkplan[0],
456
- // f_filialeid: this.model.f_filialeid,
457
- // //orderitem: this.model.f_offsite_time,
458
- // //condition:this.model.condition
459
- // }
460
- // model.f_subcompany = this.$login.f.f_fengongsi
461
- return {
462
- showinfo1:true,
463
- showinfo2:false,
464
- showinfo3:false,
465
- shouinfodata:{},
466
- tableBrands: [{label: '全部', value: ''}],
467
- audioshow: false,
468
- safeAudit: this.$appdata.getSingleValue('安检审核') == '是' ? true : false,
469
- searchData: {
470
- condition: "1=1",
471
- orderitem: "f_offsite_time desc",
472
- f_plan_id: "",
473
- f_approved: '',
474
- f_entry_status: '',
475
- f_no_checkplan: '',
476
- f_filialeid: `('${this.$login.f.orgid}')`
477
- },
478
- model: model,
479
- excelHeaders: {
480
- //searchData:searchData,
481
- 'f_userinfo_code': '客户编号',
482
- 'f_user_name': '客户姓名',
483
- 'f_meternumber':'客户表号',
484
- 'f_user_phone':'客户电话',
485
- 'f_check_type': '客户类型',
486
- 'f_residential_area': '小区',
487
- 'f_address': '客户地址',
488
- 'f_entry_status': '安检状态',
489
- 'f_usegas': '用气状态',
490
- 'f_offsite_time': '安检时间',
491
- 'f_checker_name': '安检员',
492
- 'f_safecheck_type':'安检类型',
493
- 'f_repair_approved_note': '备注',
494
- 'f_gas_date': '开户时间',
495
- 'f_plan_name': '计划名称'
496
- },
497
- fun: this.$login.f,
498
- pcds:[],
499
- checkersid: [],
500
- approveds:this.$appdata.getParam('安检审核状态')?[{label: '全部', value: ''}, ...this.$appdata.getParam('安检审核状态')]:[{label: '全部', value: ''}],
501
- safetype: this.$appdata.getParam('安检类型')?[{label: '全部', value: ''}, ...this.$appdata.getParam('安检类型')]:[{label: '全部', value: ''}],
502
- criteriaShow: false,
503
- checktype: this.$appdata.getParam('用户类型')?[{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]:[{label: '全部', value: ''}],
504
- f_check_type:[{label:'全部',value:''},{label:'民用',value:'民用'},{label:'非民用',value:'非民用'}],
505
- showModal: false,
506
- safe_types:this.$appdata.getParam('计划类型')?[{label: '全部', value: ''}, ...this.$appdata.getParam('计划类型')]:[{label: '全部', value: ''}],
507
- f_approval_states: this.$appdata.getParam('安检单审核状态')?[{label: '全部', value: ''}, ...this.$appdata.getParam('安检单审核状态')]:[{label: '全部', value: ''}],
508
- f_entry_status: this.$appdata.getParam('安检状态')?[{label: '全部', value: ''}, ...this.$appdata.getParam('安检状态')]:[{label: '全部', value: ''}],
509
- no_checkplans: this.$appdata.getParam('有无计划')?[{label: '全部', value: ''}, ...this.$appdata.getParam('有无计划')]:[{label: '全部', value: ''}],
510
- usegas: this.$appdata.getParam('用气状态')?[{label: '全部', value: ''}, ...this.$appdata.getParam('用气状态')]:[{label: '全部', value: ''}],
511
- showcheckmsg: false,
512
- checkInfo: {},
513
- orderDefault: "'f_offsite_time'",
514
- orderFields: {
515
- f_offsite_time: 'no'
516
- },
517
- sliceArea: [],
518
- cbc:[]
519
- }
520
- },
521
- created() {
522
- // 使用 $on 监听事件
523
- this.$root.$on('audit-status-changed', () => {
524
- console.log('收到审核状态变更事件')
525
- this.refresh()
526
- })
527
- },
528
- beforeDestroy() {
529
- // 记得在组件销毁前移除事件监听
530
- this.$root.$off('audit-status-changed')
531
- },
532
- methods: {
533
- showback1(){
534
- this.showinfo1 = true
535
- this.showinfo2 = false
536
- },
537
- showback2(){
538
- this.showinfo1 = true
539
- this.showinfo3 = false
540
- },
541
- //气表品牌查询
542
- getTableBrands() {
543
- new HttpResetClass().load("POST", `/api/af-safecheck/sql/safe_singleTable_OrderBy`,
544
- {data: {items: "*", tablename: "t_gasbrand", orderitem: "id", condition: ` 1=1 `}},
545
- {resolveMsg: null, rejectMsg: null}).then((resp) => {
546
- resp.data.forEach((result) => {
547
- this.tableBrands.push({label: result.f_meter_brand, value: result.f_meter_brand})
548
- })
549
- })
550
- },
551
- //获取省市区列表
552
- getPcd(val){
553
- this.pcds = [{label:'全部',value:''}]
554
- new HttpResetClass().load("POST", `/api/af-safecheck/sql/safe_singleTable_OrderBy`,
555
- {data:{items:"*",tablename:"t_pcd",orderitem:"id",condition:`f_orgid in ${val}`}},
556
- {resolveMsg: null, rejectMsg: null}).then((pcdlist)=>{
557
- pcdlist.data.forEach((result)=>{
558
- this.pcds.push({label:result.f_pcd,value:result.f_pcd})
559
- })
560
- })
561
- },
562
- showaudio(){
563
- //tag
564
- this.audioshow=!this.audioshow
565
- //tag
566
- },
567
- getmeterbook(val){
568
- this.cbc=[]
569
- this.cbc.push({
570
- label:'全部',
571
- value:''
572
- })
573
- if (val==''){
574
-
575
- this.cbcs.forEach(res=>{
576
- this.cbc.push({
577
- label:res.f_book_name,
578
- value:res.id
579
- })
580
- })
581
- }else{
582
- this.cbcs.forEach(res=>{
583
- if (res.f_book_slice_area==val){
584
- this.cbc.push({
585
- label:res.f_book_name,
586
- value:res.id
587
- })
588
- }
589
- })
590
- }
591
- },
592
- Mreadibook(val){
593
- ////tag
594
- ////tag
595
- if (val){
596
- new HttpResetClass().load('POST',`/api/af-safecheck/sql/safe_singleTable_OrderBy`, {data: {
597
- items: 'name',
598
- tablename: 't_zone',
599
- condition: `parentid in ${val}`,
600
- orderitem: 'id'
601
- }}, {resolveMsg: null, rejectMsg: null}).then((res) => {
602
- this.sliceArea=[]
603
- this.sliceArea.push({
604
- label:'全部',
605
- value:''
606
- })
607
- res.data.forEach(ress=>{
608
- this.sliceArea.push({
609
- label:ress.name,
610
- value:ress.name
611
- })
612
- })
613
-
614
- })
615
- }
616
- },
617
- getAllMeterBook(val){
618
- ////tag
619
- ////tag
620
- this.cbcs=[]
621
- if (val){
622
- new HttpResetClass().load('POST',`/api/af-safecheck/sql/safe_singleTable_OrderBy`, {data: {
623
- items: 'f_book_name,f_book_slice_area,id',
624
- tablename: 't_meter_book',
625
- condition: `f_filiale_id in ${val}`,
626
- orderitem: 'id'
627
- }}, {resolveMsg: null, rejectMsg: null}).then((res) => {
628
- res.data.forEach(ress=>{
629
- this.cbcs.push({
630
- id:ress.id,
631
- f_book_name:ress.f_book_name,
632
- f_book_slice_area:ress.f_book_slice_area
633
- })
634
- })
635
- this.cbc=[]
636
- this.cbc.push({
637
- label:'全部',
638
- value:''
639
- })
640
- this.cbcs.forEach(res=>{
641
- this.cbc.push({
642
- label:res.f_book_name,
643
- value:res.id
644
- })
645
- })
646
- })
647
- }
648
- },
649
- getRes(obj) {
650
- this.model.f_filialeid = this.$login.convertToIn(obj.resids);
651
- this.searchData.f_filialeid = this.$login.convertToIn(obj.resids);
652
- this.Mreadibook(this.model.f_filialeid)
653
- this.getAllMeterBook(this.model.f_filialeid)
654
- this.getPcd(this.model.f_filialeid)
655
- //this.$refs.paged.$refs.criteria.search()
656
- },
657
-
658
- change(row) {
659
- row.f_upload_state = '已传'
660
- this.shouinfodata = JSON.parse(JSON.stringify(row))
661
- this.showinfo1 = false
662
- if (row.f_safe_type == '已挂表未办卡安检'){
663
- this.showinfo2 = false
664
- this.showinfo3 = true
665
- return
666
- }
667
- this.showinfo2 = true
668
- this.showinfo3 = false
669
- },
670
- showChooser() {
671
- this.showModal = true
672
- },
673
- hidden() {
674
- this.criteriaShow = !this.criteriaShow
675
- },
676
- refresh() {
677
- this.$refs.paged.$refs.criteria.search()
678
- },
679
- ok() {
680
- this.showModal = false
681
- if (this.$refs.paged.$refs.criteria.$refs.modal.$children[0].selectedRow.id) {
682
- this.model.f_plan_id = this.$refs.paged.$refs.criteria.$refs.modal.$children[0].selectedRow.id
683
- this.model.f_check_plan=this.$refs.paged.$refs.criteria.$refs.modal.$children[0].selectedRow
684
- }
685
- },
686
- cancel() {
687
- this.showModal = false
688
- this.model.f_check_plan = {f_plan_name: '', id: ''}
689
- this.model.f_plan_id=''
690
- },
691
- print(row) {
692
- this.showcheckmsg = true
693
- this.checkInfo = row
694
- },
695
-
696
- sort(field, rule) {
697
- // 将所有排序方式设为不排序,实现相互排斥
698
- for (let key in this.orderFields) {
699
- if (key === field) {
700
- this.orderFields[key] = rule
701
- } else {
702
- this.orderFields[key] = 'no'
703
- }
704
- }
705
- // 如果新规则不排序,还原为默认排序
706
- if (rule === 'no') {
707
- this.model.paramSource.orderitem = `'${this.orderDefault}'`
708
- } else {
709
- this.model.paramSource.orderitem = `'${field} ${rule}'`
710
- }
711
- this.search()
712
- },
713
- search() {
714
- console.log('审核通过回调')
715
- this.$refs.paged.$refs.criteria.search()
716
- },
717
- selfSearch(args) {
718
- ////tag
719
- //args.condition+=" and f_check_type='民用'"
720
- if(args.model.f_check_date){
721
- const daysBefore = Number(args.model.f_check_date);
722
- if ( daysBefore > 0) {
723
- // 获取当前日期
724
- const now = new Date();
725
- // 计算三天前的日期
726
- const threeDaysBefore = new Date(now.getTime() - (daysBefore * 24 * 60 * 60 * 1000));
727
- // 如果需要格式化日期,可以使用Date对象的方法
728
- var formattedDate = threeDaysBefore.toISOString().split('T')[0];
729
- args.condition += ` and f_offsite_time <='${formattedDate} 23:59:59'`;
730
- } else {
731
- console.error('f_check_date不是一个有效的正整数');
732
- }
733
- }
734
- this.model.search(args.condition, args.model, args.condValue)
735
- }
736
- },
737
- ready() {
738
- if(this.safeAudit){
739
- let oa = {
740
- 'f_approved_by':'审核人',
741
- 'f_approvedstart_time':'审核开始时间',
742
- 'f_approved_time':'审核结束时间',
743
- 'f_approved':'审核状态',
744
- 'f_approved_note': '审核备注'
745
- }
746
- this.excelHeaders = Object.assign({}, this.excelHeaders, oa)
747
- }
748
- this.function = this.f
749
- //获取气表品牌
750
- this.getTableBrands()
751
- let gen = select(this)
752
- //this.pianqu()
753
- this.Mreadibook(`('${this.$login.f.orgid}')`)
754
- co(gen)
755
- this.$refs.paged.$refs.criteria.model.f_check_start = Util.toStartDateString() + ' 00:00:00'
756
- this.$refs.paged.$refs.criteria.model.f_check_end = Util.toEndDateString() + ' 23:59:59'
757
- },
758
- watch: {
759
- 'model.f_no_checkplan'(val) {
760
- if (this.model.f_no_checkplan){
761
- this.searchData.f_no_checkplan = val
762
- }
763
- if (this.model.f_no_checkplan == '有计划安检') {
764
-
765
- this.showChooser()
766
- }
767
- },
768
- 'model.condition'(val) {
769
- if (val) {
770
- this.searchData.condition = val
771
- }
772
-
773
- },
774
- 'model.f_entry'(val) {
775
- this.searchData.f_entry_status = val
776
- },
777
- 'model.f_plan_id'(val) {
778
- if (val) {
779
- this.searchData.f_plan_id = val
780
- }
781
- },
782
- 'model.f_slice_area'(val) {
783
- },
784
- 'model.f_approved'(val) {
785
- if (val) {
786
- this.searchData.f_approved = val
787
- }
788
- }
789
- }
790
-
791
- }
792
- </script>
1
+ <template>
2
+ <div class="flex-row" v-show="showinfo1">
3
+ <div class="basic-main">
4
+ <criteria-paged :model="model" v-ref:paged @sort="sort">
5
+ <criteria partial='criteria' class="search_area" @condition-changed='$parent.selfSearch' v-ref:criteria>
6
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
7
+ <div class="row">
8
+ <div class="form-group col-sm-2" >
9
+ <label class="font_normal_body">客户编号</label>
10
+ <input type="text" class="input_search" v-model="model.f_userinfo_code"
11
+ style="width: 60%" placeholder="客户编号" condition="f_userinfo_code='{}'">
12
+ </div>
13
+ <div class="form-group col-sm-2" >
14
+ <label class="font_normal_body">客户名称</label>
15
+ <input type="text" class="input_search" v-model="model.f_user_name"
16
+ style="width: 60%" placeholder="客户名称" condition="f_user_name like '%{}%'">
17
+ </div>
18
+ <div class="form-group col-sm-2" >
19
+ <label class="font_normal_body">客户电话</label>
20
+ <input type="text" class="input_search" v-model="model.f_user_phone"
21
+ style="width: 60%" placeholder="客户电话" condition="f_user_phone like '%{}%'">
22
+ </div>
23
+ <div class="form-group col-sm-2" >
24
+ <label class="font_normal_body">客户表号</label>
25
+ <input type="text" class="input_search" v-model="model.f_meternumber"
26
+ style="width: 60%" placeholder="客户表号" condition="f_meternumber like '%{}%'">
27
+ </div>
28
+ <div class="form-group col-sm-2" >
29
+ <label class="font_normal_body">小&emsp;&emsp;区</label>
30
+ <input type="text" class="input_search" v-model="model.f_residential_area"
31
+ style="width: 60%" placeholder="小区" condition="f_residential_area like '%{}%'">
32
+ </div>
33
+ <div class="form-group col-sm-2" >
34
+ <label class="font_normal_body">详细地址</label>
35
+ <input type="text" class="input_search" v-model="model.f_address"
36
+ style="width: 60%" placeholder="详细地址" condition="f_address like '%{}%'">
37
+ </div>
38
+ <div class="form-group col-sm-2" style="width: auto;margin-top:8px;float: right">
39
+
40
+ <export-excel :data="$parent.$parent.searchData"
41
+ :field="$parent.$parent.excelHeaders"
42
+ :choose-col="true"
43
+ sqlurl="api/af-safecheck/logic/exportfile" sql-name="查找安检单" template-name='安检记录明细'></export-excel>
44
+ <button class="button_spacing button_search" @click="$parent.$parent.showaudio()" v-if="$parent.$parent.audioshow">隐藏</button>
45
+
46
+ <button class="button_spacing button_search" @click="search()">查询</button>
47
+ <div style="float: right" class="button_spacing"
48
+ :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
49
+ @click="$parent.$parent.hidden()"></div>
50
+ </div>
51
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
52
+ <label class="font_normal_body">安检计划</label>
53
+ <input type="text" class="input_search" v-model="$parent.$parent.model.f_check_plan.f_plan_name"
54
+ @click="$parent.$parent.showChooser"
55
+ style="width: 60%" placeholder="安检计划" readonly="readonly">
56
+ </div>
57
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
58
+ <label class="font_normal_body">开始时间</label>
59
+ <datepicker
60
+ :value.sync="model.f_check_start"
61
+ placeholder='开始时间' style="width: 60%"
62
+ :disabled-days-of-week="[]"
63
+ :format="'yyyy-MM-dd'"
64
+ :show-rest-button="reset"
65
+ v-model="model.f_check_start"
66
+ condition="f_offsite_time > ='{} 00:00:00'">
67
+ </datepicker>
68
+ </div>
69
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
70
+ <label class="font_normal_body">结束时间</label>
71
+ <datepicker
72
+ :value.sync="model.f_check_end"
73
+ placeholder='结束时间' style="width: 60%"
74
+ :disabled-days-of-week="[]"
75
+ :format="'yyyy-MM-dd'"
76
+ :show-rest-button="reset"
77
+ v-model="model.f_check_end"
78
+ condition="f_offsite_time <= '{} 23:59:59'">
79
+ </datepicker>
80
+ </div>
81
+
82
+
83
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
84
+
85
+ <label class="font_normal_body">安检类型</label>
86
+ <v-select :value.sync="model.f_safecheck_type" v-model='model.f_safecheck_type'
87
+ :value-single="true" style="width: 60%"
88
+ class="select_list select"
89
+ :options='$parent.$parent.safetype' placeholder='安检类型'
90
+ close-on-select
91
+ condition="f_safecheck_type = '{}'"></v-select>
92
+ </div>
93
+
94
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
95
+
96
+ <label class="font_normal_body">客户类型</label>
97
+ <v-select :value.sync="model.f_check_type" v-model='model.f_check_type'
98
+ :value-single="true" style="width: 60%"
99
+ class="select_list select"
100
+ :options='$parent.$parent.checktype' placeholder='客户类型'
101
+ close-on-select
102
+ condition="f_check_type = '{}'"></v-select>
103
+ </div>
104
+
105
+
106
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
107
+ <label class="font_normal_body">安检状态</label>
108
+ <v-select id="f_entry"
109
+ class="select_list select"
110
+ placeholder='安检状态' style="width: 60%"
111
+ v-model='model.f_entry'
112
+ :value.sync="$parent.$parent.model.f_entry"
113
+ :options='$parent.$parent.f_entry_status'
114
+ condition=""
115
+ :value-single="true"
116
+ close-on-select clear-button></v-select>
117
+ </div>
118
+ <div class="col-sm-4 form-group" v-show="$parent.$parent.criteriaShow" style="margin: 0">
119
+ <role-selector-safe
120
+ role-name="安检员"
121
+ role-lable="安&nbsp;检&nbsp;员&nbsp;"
122
+ @re-res="$parent.$parent.getRes"
123
+ :value.sync="model.f_checker_id"
124
+ v-model="model.f_checker_id"
125
+ condition="f_checker_name = '{}'">
126
+ </role-selector-safe>
127
+ </div>
128
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
129
+ <label class="font_normal_body">片&emsp;&emsp;区</label>
130
+ <v-select class="select_list select"
131
+ placeholder='片区/管理站' style="width: 60%"
132
+ :value.sync="model.f_slice_area" v-model="model.f_slice_area"
133
+ :options='$parent.$parent.sliceArea'
134
+ filer-key="name"
135
+ close-on-select clear-button
136
+ condition="f_slice_area='{}'"
137
+ @change="$parent.$parent.getmeterbook(model.f_slice_area)"
138
+ :value-single="true">
139
+ </v-select>
140
+ </div>
141
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
142
+ <label class="font_normal_body">抄&ensp;表&ensp;册</label>
143
+ <v-select class="select_list select"
144
+ placeholder='抄表册' style="width: 60%"
145
+ :value.sync="model.f_meter_book_num" v-model="model.f_meter_book_num"
146
+ :options='$parent.$parent.cbc'
147
+ filer-key="name"
148
+ close-on-select clear-button
149
+ condition="f_meter_book_num={}"
150
+ :value-single="true">
151
+ </v-select>
152
+ </div>
153
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
154
+ <label class="font_normal_body">省&ensp;市&ensp;区</label>
155
+ <v-select class="select_list select"
156
+ placeholder='请选择' style="width: 60%"
157
+ :value.sync="model.f_pcd" v-model="model.f_pcd"
158
+ :options='$parent.$parent.pcds'
159
+ filer-key="name"
160
+ close-on-select clear-button
161
+ condition="f_pcd='{}'"
162
+ :value-single="true">
163
+ </v-select>
164
+ </div>
165
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
166
+ <label class="font_normal_body">开户时间</label>
167
+ <datepicker
168
+ :value.sync="model.f_check_gasstart"
169
+ placeholder='开始时间' style="width: 60%"
170
+ :disabled-days-of-week="[]"
171
+ :format="'yyyy-MM-dd'"
172
+ :show-rest-button="reset"
173
+ v-model="model.f_check_gasstart"
174
+ condition="f_gas_date > ='{} 00:00:00'">
175
+ </datepicker>
176
+ </div>
177
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
178
+ <label class="font_normal_body">开户时间</label>
179
+ <datepicker
180
+ :value.sync="model.f_check_gasend"
181
+ placeholder='结束时间' style="width: 60%"
182
+ :disabled-days-of-week="[]"
183
+ :format="'yyyy-MM-dd'"
184
+ :show-rest-button="reset"
185
+ v-model="model.f_check_gasend"
186
+ condition="f_gas_date <= '{} 23:59:59'">
187
+ </datepicker>
188
+ </div>
189
+ <div class="form-group col-sm-2" v-show="$parent.$parent.safeAudit && $parent.$parent.criteriaShow ">
190
+ <label class="font_normal_body">审&ensp;核&ensp;人</label>
191
+ <input type="text" class="input_search" v-model="model.f_approved_by"
192
+ style="width: 60%" placeholder="审核人" condition="f_approved_by like '%{}%'">
193
+ </div>
194
+ <div class="form-group col-sm-2" v-show="$parent.$parent.safeAudit && $parent.$parent.criteriaShow ">
195
+ <label class="font_normal_body">审核时间</label>
196
+ <datepicker
197
+ :value.sync="model.f_approved_timestart"
198
+ placeholder='开始时间' style="width: 60%"
199
+ :disabled-days-of-week="[]"
200
+ :format="'yyyy-MM-dd'"
201
+ :show-rest-button="reset"
202
+ v-model="model.f_approved_timestart"
203
+ condition="f_approved_time > ='{} 00:00:00'">
204
+ </datepicker>
205
+ </div>
206
+ <div class="form-group col-sm-2" v-show="$parent.$parent.safeAudit && $parent.$parent.criteriaShow ">
207
+ <label class="font_normal_body">审核时间</label>
208
+ <datepicker
209
+ :value.sync="model.f_approved_timeend"
210
+ placeholder='结束时间' style="width: 60%"
211
+ :disabled-days-of-week="[]"
212
+ :format="'yyyy-MM-dd'"
213
+ :show-rest-button="reset"
214
+ v-model="model.f_approved_timeend"
215
+ condition="f_approved_time <= '{} 23:59:59'">
216
+ </datepicker>
217
+ </div>
218
+ <div class="form-group col-sm-2" v-show="$parent.$parent.safeAudit &&$parent.$parent.criteriaShow">
219
+ <label class="font_normal_body" title="参数管理:安检审核状态">审核状态</label>
220
+ <v-select class="select_list select"
221
+ placeholder='请选择' style="width: 60%"
222
+ :value.sync="model.f_approved" v-model="model.f_approved"
223
+ :options='$parent.$parent.approveds'
224
+ filer-key="name"
225
+ close-on-select clear-button
226
+ condition="f_approved='{}'"
227
+ :value-single="true">
228
+ </v-select>
229
+ </div>
230
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
231
+ <label class="font_normal_body">气表品牌</label>
232
+ <v-select
233
+ class="select_list select"
234
+ placeholder='气表品牌' style="width: 60%"
235
+ v-model='model.tableBrand'
236
+ :value.sync="model.tableBrand"
237
+ :options='$parent.$parent.tableBrands'
238
+ condition="f_meter_brand = '{}'"
239
+ :value-single="true"
240
+ close-on-select clear-button></v-select>
241
+ </div>
242
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
243
+ <label class="font_normal_body">有无计划</label>
244
+ <v-select class="select_list select"
245
+ placeholder='请选择' style="width: 60%"
246
+ :value.sync="model.f_no_checkplan" v-model="model.f_no_checkplan"
247
+ :options='$parent.$parent.no_checkplans'
248
+ filer-key="name"
249
+ close-on-select clear-button
250
+ condition="f_no_checkplan='{}'"
251
+ :value-single="true">
252
+ </v-select>
253
+ </div>
254
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
255
+ <label class="font_normal_body">未用燃气</label>
256
+ <v-select class="select_list select"
257
+ placeholder='请选择' style="width: 60%"
258
+ :value.sync="model.f_usegas" v-model="model.f_usegas"
259
+ :options='$parent.$parent.usegas'
260
+ filer-key="name"
261
+ close-on-select clear-button
262
+ condition="f_usegas='{}'"
263
+ :value-single="true">
264
+ </v-select>
265
+ </div>
266
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
267
+ <label class="font_normal_body">客户卡号</label>
268
+ <input type="text" class="input_search" v-model="model.f_card_id"
269
+ style="width: 60%" placeholder="客户卡号" condition="f_card_id like '%{}%'">
270
+ </div>
271
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
272
+ <label class="font_normal_body">距上次安检天数</label>
273
+ <input type="number" class="input_search" v-model="model.f_check_date"
274
+ style="width: 60%" placeholder="距上次安检天数" >
275
+ </div>
276
+ </div>
277
+ <modal :show.sync="$parent.$parent.showModal" v-ref:modal backdrop="false">
278
+ <div slot="modal-header" class="modal-header">
279
+ <h4 class="modal-title">
280
+ 选择计划
281
+ </h4>
282
+ </div>
283
+ <div slot="modal-body" class="modal-body">
284
+ <plan-chooser :f.sync="$parent.$parent.fun" v-ref:chooser></plan-chooser>
285
+ </div>
286
+ <div slot="modal-footer" class="modal-footer" style="text-align: center">
287
+ <button class="button_search" @click="$parent.$parent.ok">确认</button>
288
+ <button class="button_search" @click="$parent.$parent.cancel">取消</button>
289
+ </div>
290
+ </modal>
291
+ </div>
292
+ </criteria>
293
+ <data-grid class="list_area table_sy" style="overflow: hidden" :model="model" partial='list' v-ref:grid>
294
+ <template partial='head'>
295
+ <tr>
296
+ <th>
297
+ <nobr>客户编号</nobr>
298
+ </th>
299
+ <th>
300
+ <nobr>客户名称</nobr>
301
+ </th>
302
+ <th>
303
+ <nobr>客户表号</nobr>
304
+ </th>
305
+ <th>
306
+ <nobr>气表品牌</nobr>
307
+ </th>
308
+ <th>
309
+ <nobr>客户电话</nobr>
310
+ </th>
311
+ <th>
312
+ <nobr>客户类型</nobr>
313
+ </th>
314
+ <th>
315
+ <nobr>客户地址</nobr>
316
+ </th>
317
+ <th>
318
+ <nobr>安检状态</nobr>
319
+ </th>
320
+ <th>
321
+ <nobr>计划名称</nobr>
322
+ </th>
323
+ <th>
324
+ <nobr>用气状态</nobr>
325
+ </th>
326
+ <th>
327
+ <data-order field="f_offsite_time" name="安检时间"></data-order>
328
+ </th>
329
+ <th>
330
+ <nobr>安检员</nobr>
331
+ </th>
332
+ <th>
333
+ <nobr>备注</nobr>
334
+ </th>
335
+ <th>
336
+ <nobr>开户时间</nobr>
337
+ </th>
338
+ <th v-if="$parent.$parent.$parent.safeAudit">
339
+ <nobr>审核人</nobr>
340
+ </th>
341
+ <th v-if="$parent.$parent.$parent.safeAudit">
342
+ <nobr>审核起始</nobr>
343
+ </th>
344
+ <th v-if="$parent.$parent.$parent.safeAudit">
345
+ <nobr>审核结束</nobr>
346
+ </th>
347
+ <th v-if="$parent.$parent.$parent.safeAudit">
348
+ <nobr>审核状态</nobr>
349
+ </th>
350
+ <th v-if="$parent.$parent.$parent.safeAudit">
351
+ <nobr>审核未通过原因</nobr>
352
+ </th>
353
+ <th>
354
+ <nobr>用气状态</nobr>
355
+ </th>
356
+ <th>
357
+ <nobr>操作</nobr>
358
+ </th>
359
+ <th v-if="$parent.$parent.$parent.audioshow">
360
+ <nobr>录音</nobr>
361
+ </th>
362
+ </tr>
363
+ </template>
364
+ <template partial='body'>
365
+
366
+ <td style="text-align: center">{{row.f_userinfo_code}}</td>
367
+ <td style="text-align: center">{{row.f_user_name}}</td>
368
+ <td style="text-align: center">{{row.f_meternumber}}</td>
369
+ <td style="text-align: center">{{row.f_meter_brand}}</td>
370
+ <td style="text-align: center">{{row.f_user_phone}}</td>
371
+ <td style="text-align: center">{{row.f_check_type}}</td>
372
+
373
+ <td style="text-align: center">{{ row.f_address }}</td>
374
+ <td style="text-align: center">{{ row.f_entry_status }}</td>
375
+ <td style="text-align: center">{{ row.f_plan_name }}</td>
376
+ <td style="text-align: center">{{ row.f_usegas }}</td>
377
+ <td style="text-align: center">{{ row.f_offsite_time }}</td>
378
+ <td style="text-align: center">{{ row.f_checker_name }}</td>
379
+ <td style="text-align: center">{{ row.f_repair_approved_note }}</td>
380
+ <td style="text-align: center">{{ row.f_gas_date }}</td>
381
+ <td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">{{ row.f_approved_by }}</td>
382
+ <td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">{{ row.f_approvedstart_time }}</td>
383
+ <td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">{{ row.f_approved_time }}</td>
384
+ <td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">
385
+ {{ row.f_approved ? row.f_approved : '未审核' }}
386
+ </td>
387
+ <td style="text-align: center" v-show="$parent.$parent.$parent.safeAudit">
388
+ {{row.f_approved_note}}
389
+ </td>
390
+ <td style="text-align: center">{{row.f_gas_state}}</td>
391
+ <td style="text-align: center">
392
+ <button class="button_spacing button_search-1" @click='$parent.$parent.$parent.change(row)'>查看</button>
393
+
394
+
395
+ </td>
396
+ <td style="text-align: center" v-if="$parent.$parent.$parent.audioshow">
397
+ <!-- <button class="button_spacing button_search-1" @click='$parent.$parent.$parent.change(row)'>查看</button>-->
398
+ <audio controls="controls" v-if="row.f_recording1_path">
399
+ <source type="audio/mpeg" :src="'rs/audio/file/'+row.f_recording1_path">
400
+ </audio>
401
+ <!--<button type="button" class="button_new-1 button_spacing" data-toggle="dropdown"
402
+ @click="$parent.$parent.$parent.print(row)">
403
+ 打印
404
+ </button>-->
405
+ </td>
406
+ </template>
407
+ </data-grid>
408
+ </criteria-paged>
409
+ <check-msg v-if="showcheckmsg" :show="showcheckmsg" :data="checkInfo"></check-msg>
410
+ </div>
411
+ </div>
412
+ <new-check-paper v-if="showinfo2" :f_plan_id="shouinfodata.f_check_plan_id" :item="shouinfodata" :role="'view'" v-on:showback="showback1"></new-check-paper>
413
+ <new-check-paper-temp v-if="showinfo3" :f_plan_id="shouinfodata.f_check_plan_id" :item="shouinfodata" :role="'view'" v-on:showback="showback2"></new-check-paper-temp>
414
+ </template>
415
+
416
+ <script>
417
+ import {PagedList} from 'vue-client'
418
+ import co from 'co'
419
+ import * as Util from '../../../components/Util'
420
+ import HttpResetClass from "vue-client/src/plugins/HttpResetClass";
421
+
422
+
423
+ let select = function* (self) {
424
+ let http = new HttpResetClass()
425
+ let getGasman = yield http.load('POST', '/rs/search', {
426
+ source: 'this.getParentByType($department$).getAllChildrens().where(row.getAttributes().get($rolestr$).indexOf($安检员$) != -1))',
427
+ userid: self.$login.f.id
428
+ }, {resolveMsg: null, rejectMsg: null})
429
+ ////tag
430
+ self.checkersid.push({label: '全部', value: ''})
431
+ getGasman.data.forEach((checker) => {
432
+ self.checkersid.push({label: checker.name, value: checker.id})
433
+ })
434
+ }
435
+
436
+ export default {
437
+ title: '安检结果查看',
438
+ data() {
439
+ let model = new PagedList('api/af-safecheck/sql/查找安检单', 20, {
440
+ f_plan_id: 'this.f_plan_id',
441
+ f_approved: 'this.f_approved',
442
+ f_entry_status: 'this.f_entry',
443
+ f_no_checkplan: 'this.f_no_checkplan',
444
+ f_filialeid: 'this.f_filialeid',
445
+ orderitem: "'f_offsite_time desc'"
446
+ })
447
+ model.f_check_type = ''
448
+ model.f_plan_id = ''
449
+ model.f_approved = ''
450
+ model.f_entry = ''
451
+ model.f_no_checkplan = ''
452
+ model.f_filialeid = `('${this.$login.f.orgid}')`
453
+ //model.f_check_type='民用'
454
+ // let searchData={
455
+ // f_plan_id: this.model.f_checker_id==undefined?"":this.model.f_checker_id,
456
+ // f_approved: this.model.f_approved,
457
+ // f_entry_status: this.model.f_entry,
458
+ // f_no_checkplan:this.model.f_no_checkplan[0],
459
+ // f_filialeid: this.model.f_filialeid,
460
+ // //orderitem: this.model.f_offsite_time,
461
+ // //condition:this.model.condition
462
+ // }
463
+ // model.f_subcompany = this.$login.f.f_fengongsi
464
+ return {
465
+ showinfo1:true,
466
+ showinfo2:false,
467
+ showinfo3:false,
468
+ shouinfodata:{},
469
+ tableBrands: [{label: '全部', value: ''}],
470
+ audioshow: false,
471
+ safeAudit: this.$appdata.getSingleValue('安检审核') == '是' ? true : false,
472
+ searchData: {
473
+ condition: "1=1",
474
+ orderitem: "f_offsite_time desc",
475
+ f_plan_id: "",
476
+ f_approved: '',
477
+ f_entry_status: '',
478
+ f_no_checkplan: '',
479
+ f_filialeid: `('${this.$login.f.orgid}')`
480
+ },
481
+ model: model,
482
+ excelHeaders: {
483
+ //searchData:searchData,
484
+ 'f_userinfo_code': '客户编号',
485
+ 'f_user_name': '客户姓名',
486
+ 'f_meternumber':'客户表号',
487
+ 'f_user_phone':'客户电话',
488
+ 'f_check_type': '客户类型',
489
+ 'f_residential_area': '小区',
490
+ 'f_address': '客户地址',
491
+ 'f_entry_status': '安检状态',
492
+ 'f_usegas': '用气状态',
493
+ 'f_offsite_time': '安检时间',
494
+ 'f_checker_name': '安检员',
495
+ 'f_safecheck_type':'安检类型',
496
+ 'f_repair_approved_note': '备注',
497
+ 'f_gas_date': '开户时间',
498
+ 'f_plan_name': '计划名称'
499
+ },
500
+ fun: this.$login.f,
501
+ pcds:[],
502
+ checkersid: [],
503
+ approveds:this.$appdata.getParam('安检审核状态')?[{label: '全部', value: ''}, ...this.$appdata.getParam('安检审核状态')]:[{label: '全部', value: ''}],
504
+ safetype: this.$appdata.getParam('安检类型')?[{label: '全部', value: ''}, ...this.$appdata.getParam('安检类型')]:[{label: '全部', value: ''}],
505
+ criteriaShow: false,
506
+ checktype: this.$appdata.getParam('用户类型')?[{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]:[{label: '全部', value: ''}],
507
+ f_check_type:[{label:'全部',value:''},{label:'民用',value:'民用'},{label:'非民用',value:'非民用'}],
508
+ showModal: false,
509
+ safe_types:this.$appdata.getParam('计划类型')?[{label: '全部', value: ''}, ...this.$appdata.getParam('计划类型')]:[{label: '全部', value: ''}],
510
+ f_approval_states: this.$appdata.getParam('安检单审核状态')?[{label: '全部', value: ''}, ...this.$appdata.getParam('安检单审核状态')]:[{label: '全部', value: ''}],
511
+ f_entry_status: this.$appdata.getParam('安检状态')?[{label: '全部', value: ''}, ...this.$appdata.getParam('安检状态')]:[{label: '全部', value: ''}],
512
+ no_checkplans: this.$appdata.getParam('有无计划')?[{label: '全部', value: ''}, ...this.$appdata.getParam('有无计划')]:[{label: '全部', value: ''}],
513
+ usegas: this.$appdata.getParam('用气状态')?[{label: '全部', value: ''}, ...this.$appdata.getParam('用气状态')]:[{label: '全部', value: ''}],
514
+ showcheckmsg: false,
515
+ checkInfo: {},
516
+ orderDefault: "'f_offsite_time'",
517
+ orderFields: {
518
+ f_offsite_time: 'no'
519
+ },
520
+ sliceArea: [],
521
+ cbc:[]
522
+ }
523
+ },
524
+ created() {
525
+ // 使用 $on 监听事件
526
+ this.$root.$on('audit-status-changed', () => {
527
+ console.log('收到审核状态变更事件')
528
+ this.refresh()
529
+ })
530
+ },
531
+ beforeDestroy() {
532
+ // 记得在组件销毁前移除事件监听
533
+ this.$root.$off('audit-status-changed')
534
+ },
535
+ methods: {
536
+ showback1(){
537
+ this.showinfo1 = true
538
+ this.showinfo2 = false
539
+ },
540
+ showback2(){
541
+ this.showinfo1 = true
542
+ this.showinfo3 = false
543
+ },
544
+ //气表品牌查询
545
+ getTableBrands() {
546
+ new HttpResetClass().load("POST", `/api/af-safecheck/sql/safe_singleTable_OrderBy`,
547
+ {data: {items: "*", tablename: "t_gasbrand", orderitem: "id", condition: ` 1=1 `}},
548
+ {resolveMsg: null, rejectMsg: null}).then((resp) => {
549
+ resp.data.forEach((result) => {
550
+ this.tableBrands.push({label: result.f_meter_brand, value: result.f_meter_brand})
551
+ })
552
+ })
553
+ },
554
+ //获取省市区列表
555
+ getPcd(val){
556
+ this.pcds = [{label:'全部',value:''}]
557
+ new HttpResetClass().load("POST", `/api/af-safecheck/sql/safe_singleTable_OrderBy`,
558
+ {data:{items:"*",tablename:"t_pcd",orderitem:"id",condition:`f_orgid in ${val}`}},
559
+ {resolveMsg: null, rejectMsg: null}).then((pcdlist)=>{
560
+ pcdlist.data.forEach((result)=>{
561
+ this.pcds.push({label:result.f_pcd,value:result.f_pcd})
562
+ })
563
+ })
564
+ },
565
+ showaudio(){
566
+ //tag
567
+ this.audioshow=!this.audioshow
568
+ //tag
569
+ },
570
+ getmeterbook(val){
571
+ this.cbc=[]
572
+ this.cbc.push({
573
+ label:'全部',
574
+ value:''
575
+ })
576
+ if (val==''){
577
+
578
+ this.cbcs.forEach(res=>{
579
+ this.cbc.push({
580
+ label:res.f_book_name,
581
+ value:res.id
582
+ })
583
+ })
584
+ }else{
585
+ this.cbcs.forEach(res=>{
586
+ if (res.f_book_slice_area==val){
587
+ this.cbc.push({
588
+ label:res.f_book_name,
589
+ value:res.id
590
+ })
591
+ }
592
+ })
593
+ }
594
+ },
595
+ Mreadibook(val){
596
+ ////tag
597
+ ////tag
598
+ if (val){
599
+ new HttpResetClass().load('POST',`/api/af-safecheck/sql/safe_singleTable_OrderBy`, {data: {
600
+ items: 'name',
601
+ tablename: 't_zone',
602
+ condition: `parentid in ${val}`,
603
+ orderitem: 'id'
604
+ }}, {resolveMsg: null, rejectMsg: null}).then((res) => {
605
+ this.sliceArea=[]
606
+ this.sliceArea.push({
607
+ label:'全部',
608
+ value:''
609
+ })
610
+ res.data.forEach(ress=>{
611
+ this.sliceArea.push({
612
+ label:ress.name,
613
+ value:ress.name
614
+ })
615
+ })
616
+
617
+ })
618
+ }
619
+ },
620
+ getAllMeterBook(val){
621
+ ////tag
622
+ ////tag
623
+ this.cbcs=[]
624
+ if (val){
625
+ new HttpResetClass().load('POST',`/api/af-safecheck/sql/safe_singleTable_OrderBy`, {data: {
626
+ items: 'f_book_name,f_book_slice_area,id',
627
+ tablename: 't_meter_book',
628
+ condition: `f_filiale_id in ${val}`,
629
+ orderitem: 'id'
630
+ }}, {resolveMsg: null, rejectMsg: null}).then((res) => {
631
+ res.data.forEach(ress=>{
632
+ this.cbcs.push({
633
+ id:ress.id,
634
+ f_book_name:ress.f_book_name,
635
+ f_book_slice_area:ress.f_book_slice_area
636
+ })
637
+ })
638
+ this.cbc=[]
639
+ this.cbc.push({
640
+ label:'全部',
641
+ value:''
642
+ })
643
+ this.cbcs.forEach(res=>{
644
+ this.cbc.push({
645
+ label:res.f_book_name,
646
+ value:res.id
647
+ })
648
+ })
649
+ })
650
+ }
651
+ },
652
+ getRes(obj) {
653
+ this.model.f_filialeid = this.$login.convertToIn(obj.resids);
654
+ this.searchData.f_filialeid = this.$login.convertToIn(obj.resids);
655
+ this.Mreadibook(this.model.f_filialeid)
656
+ this.getAllMeterBook(this.model.f_filialeid)
657
+ this.getPcd(this.model.f_filialeid)
658
+ //this.$refs.paged.$refs.criteria.search()
659
+ },
660
+
661
+ change(row) {
662
+ row.f_upload_state = '已传'
663
+ this.shouinfodata = JSON.parse(JSON.stringify(row))
664
+ this.showinfo1 = false
665
+ if (row.f_safe_type == '已挂表未办卡安检'){
666
+ this.showinfo2 = false
667
+ this.showinfo3 = true
668
+ return
669
+ }
670
+ this.showinfo2 = true
671
+ this.showinfo3 = false
672
+ },
673
+ showChooser() {
674
+ this.showModal = true
675
+ },
676
+ hidden() {
677
+ this.criteriaShow = !this.criteriaShow
678
+ },
679
+ refresh() {
680
+ this.$refs.paged.$refs.criteria.search()
681
+ },
682
+ ok() {
683
+ this.showModal = false
684
+ if (this.$refs.paged.$refs.criteria.$refs.modal.$children[0].selectedRow.id) {
685
+ this.model.f_plan_id = this.$refs.paged.$refs.criteria.$refs.modal.$children[0].selectedRow.id
686
+ this.model.f_check_plan=this.$refs.paged.$refs.criteria.$refs.modal.$children[0].selectedRow
687
+ }
688
+ },
689
+ cancel() {
690
+ this.showModal = false
691
+ this.model.f_check_plan = {f_plan_name: '', id: ''}
692
+ this.model.f_plan_id=''
693
+ },
694
+ print(row) {
695
+ this.showcheckmsg = true
696
+ this.checkInfo = row
697
+ },
698
+
699
+ sort(field, rule) {
700
+ // 将所有排序方式设为不排序,实现相互排斥
701
+ for (let key in this.orderFields) {
702
+ if (key === field) {
703
+ this.orderFields[key] = rule
704
+ } else {
705
+ this.orderFields[key] = 'no'
706
+ }
707
+ }
708
+ // 如果新规则不排序,还原为默认排序
709
+ if (rule === 'no') {
710
+ this.model.paramSource.orderitem = `'${this.orderDefault}'`
711
+ } else {
712
+ this.model.paramSource.orderitem = `'${field} ${rule}'`
713
+ }
714
+ this.search()
715
+ },
716
+ search() {
717
+ console.log('审核通过回调')
718
+ this.$refs.paged.$refs.criteria.search()
719
+ },
720
+ selfSearch(args) {
721
+ ////tag
722
+ //args.condition+=" and f_check_type='民用'"
723
+ if(args.model.f_check_date){
724
+ const daysBefore = Number(args.model.f_check_date);
725
+ if ( daysBefore > 0) {
726
+ // 获取当前日期
727
+ const now = new Date();
728
+ // 计算三天前的日期
729
+ const threeDaysBefore = new Date(now.getTime() - (daysBefore * 24 * 60 * 60 * 1000));
730
+ // 如果需要格式化日期,可以使用Date对象的方法
731
+ var formattedDate = threeDaysBefore.toISOString().split('T')[0];
732
+ args.condition += ` and f_offsite_time <='${formattedDate} 23:59:59'`;
733
+ } else {
734
+ console.error('f_check_date不是一个有效的正整数');
735
+ }
736
+ }
737
+ this.model.search(args.condition, args.model, args.condValue)
738
+ }
739
+ },
740
+ ready() {
741
+ if(this.safeAudit){
742
+ let oa = {
743
+ 'f_approved_by':'审核人',
744
+ 'f_approvedstart_time':'审核开始时间',
745
+ 'f_approved_time':'审核结束时间',
746
+ 'f_approved':'审核状态',
747
+ 'f_approved_note': '审核备注'
748
+ }
749
+ this.excelHeaders = Object.assign({}, this.excelHeaders, oa)
750
+ }
751
+ this.function = this.f
752
+ //获取气表品牌
753
+ this.getTableBrands()
754
+ let gen = select(this)
755
+ //this.pianqu()
756
+ this.Mreadibook(`('${this.$login.f.orgid}')`)
757
+ co(gen)
758
+ this.$refs.paged.$refs.criteria.model.f_check_start = Util.toStartDateString() + ' 00:00:00'
759
+ this.$refs.paged.$refs.criteria.model.f_check_end = Util.toEndDateString() + ' 23:59:59'
760
+ },
761
+ watch: {
762
+ 'model.f_no_checkplan'(val) {
763
+ if (this.model.f_no_checkplan){
764
+ this.searchData.f_no_checkplan = val
765
+ }
766
+ if (this.model.f_no_checkplan == '有计划安检') {
767
+
768
+ this.showChooser()
769
+ }
770
+ },
771
+ 'model.condition'(val) {
772
+ if (val) {
773
+ this.searchData.condition = val
774
+ }
775
+
776
+ },
777
+ 'model.f_entry'(val) {
778
+ this.searchData.f_entry_status = val
779
+ },
780
+ 'model.f_plan_id'(val) {
781
+ if (val) {
782
+ this.searchData.f_plan_id = val
783
+ }
784
+ },
785
+ 'model.f_slice_area'(val) {
786
+ },
787
+ 'model.f_approved'(val) {
788
+ if (val) {
789
+ this.searchData.f_approved = val
790
+ }
791
+ }
792
+ }
793
+
794
+ }
795
+ </script>