safecheck-client 3.0.33-77 → 3.0.33-79

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,557 +1,557 @@
1
- <template>
2
- <div class="flex">
3
- <section>
4
- <div class="basic-main row" style="height: 100%">
5
- <criteria-paged :model="model" v-ref:paged>
6
- <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
7
- <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
8
- <div class="row">
9
- <div class="col-sm-3 form-group form-input-group" style="width: 30%;">
10
- <role-selector-safe
11
- role-name="安检员"
12
- role-lable="安&nbsp;检&nbsp;员&nbsp;"
13
- @re-res="$parent.$parent.getRes"
14
- :value.sync="model.f_checker_id"
15
- v-model="model.f_checker_id"
16
- condition="f_checker = '{}'">
17
- </role-selector-safe>
18
- </div>
19
- <div class="form-group col-sm-3 form-input-group" style="width: 20%;">
20
- <label class="font_normal_body">用户类型</label>
21
- <v-select :value.sync="model.f_user_type" v-model='model.f_user_type'
22
- :value-single="true" style="width: 60%"
23
- class="select_list select"
24
- :options='$parent.$parent.user_types' placeholder='用户类型'
25
- close-on-select
26
- condition="f_user_type = '{}'"></v-select>
27
- </div>
28
- <div class="col-sm-3 form-group form-input-group" style="width: 20%;float: right;">
29
- <print-data-safe :sum-field="$parent.$parent.excelHeaders" :model="$parent.$parent.print_model"
30
- :field="$parent.$parent.excelHeaders"
31
- :defaultfield="$parent.$parent.defaultPrint"
32
- :titletable="'安检员考核'" :starthead="$parent.$parent.getstart"
33
- ></print-data-safe>
34
- <export-excel-safe :data="$parent.$parent.searchData"
35
- :field="$parent.$parent.excelHeaders"
36
- sqlurl="rs/logic/SafeExportExcel"
37
- sql-name="SafecheckSummary"
38
- :template-name="$parent.$parent.excelTitle">
39
- </export-excel-safe>
40
-
41
- <button type="button" name="button" class="button_search" style="margin-left: 9px" @click="search">查询</button>
42
- </div>
43
- </div>
44
- <div class="row">
45
- <div class="form-group col-sm-4">
46
- <label class="font_normal_body">计划开始:</label>
47
- <datepicker
48
- placeholder='计划开始'
49
- style="width:60%"
50
- :disabled-days-of-week="[]"
51
- :format="'yyyy-MM-dd'"
52
- :show-rest-button="reset"
53
- :value.sync="model.start_time"
54
- v-model="model.start_time"
55
- condition="tcp.f_create_time >= '{} 00:00:00'">
56
- </datepicker>
57
- </div>
58
- <div class="form-group col-sm-4">
59
- <label class="font_normal_body">计划结束:</label>
60
- <datepicker
61
- placeholder='计划结束'
62
- :disabled-days-of-week="[]"
63
- style="width:60%"
64
- :format="'yyyy-MM-dd'"
65
- :show-rest-button="reset"
66
- :value.sync="model.end_time"
67
- v-model="model.end_time"
68
- condition="tcp.f_create_time <= '{} 23:59:59'">
69
- </datepicker>
70
- </div>
71
- </div>
72
- <div class="row">
73
- <div class="col-sm-4 form-group">
74
- <label for="startDate" class="font_normal_body">安检开始:</label>
75
- <datepicker id="startDate" placeholder="安检开始"
76
- v-model="model.checkstart"
77
- :value.sync="model.checkstart"
78
- style="width: 60%;"
79
- :disabled-days-of-Week="[]"
80
- :format="'yyyy-MM-dd 00:00:00'"
81
- condition="tcpi.f_last_check_date >= '{}'"
82
- :show-reset-button="reset">
83
- </datepicker>
84
- </div>
85
- <div class="col-sm-4 form-group">
86
- <label for="endDate" class="font_normal_body">安检结束:</label>
87
- <datepicker id="endDate" placeholder="安检结束"
88
- v-model="model.checkend"
89
- :value.sync="model.checkend"
90
- :disabled-days-of-Week="[]"
91
- style="width: 60%;"
92
- condition="tcpi.f_last_check_date <= '{}'"
93
- :format="'yyyy-MM-dd 23:59:59'"
94
- :show-reset-button="reset">
95
- </datepicker>
96
- </div>
97
- </div>
98
- </div>
99
- </criteria>
100
- <data-grid :model="model" partial='list' class="list_area table_sy" id="tongchuan" v-ref:grid >
101
- <template partial='head'>
102
- <tr>
103
- <th>
104
- <nobr>序号</nobr>
105
- </th>
106
- <th>
107
- <nobr>安检员</nobr>
108
- </th>
109
- <th>
110
- <nobr>计划安检总户数</nobr>
111
- </th>
112
- <th>
113
- <nobr>未检户数</nobr>
114
- </th>
115
- <th>
116
- <nobr>已检户数</nobr>
117
- </th>
118
- <th>
119
- <nobr>入户户数</nobr>
120
- </th>
121
- <th>
122
- <nobr>三次到访不遇户数</nobr>
123
- </th>
124
- <th>
125
- <nobr>拒检户数</nobr>
126
- </th>
127
- <th>
128
- <nobr>安检率</nobr>
129
- </th>
130
- <th>
131
- <nobr>申请安检户数</nobr>
132
- </th>
133
- <th>
134
- <nobr>总入户数</nobr>
135
- </th>
136
- </tr>
137
- </template>
138
- <template partial='body'>
139
-
140
- <td style="text-align: center">{{ $index + 1 }}</td>
141
- <td style="text-align: center">{{ row.checker }}</td>
142
- <td style="text-align: center"><a @click="$parent.$parent.$parent.modalShow(row,'1')">{{ row.data1 }}</a></td>
143
- <td style="text-align: center">{{ row.data2 }}</td>
144
- <td style="text-align: center">{{ row.data3 }}</td>
145
- <td style="text-align: center">{{ row.data4 }}</td>
146
- <td style="text-align: center">{{ row.data5 }}</td>
147
- <td style="text-align: center">{{ row.data6 }}</td>
148
- <td style="text-align: center">{{ row.data7 }}</td>
149
- <td style="text-align: center"><a @click="$parent.$parent.$parent.modalShow(row,'0')">{{ row.data8 }}</a></td>
150
- <td style="text-align: center">{{ row.data9 }}</td>
151
- </template>
152
- <template partial="foot">
153
- <td style="text-align: center" colspan="2"><span><b>合计:</b></span></td>
154
- <td style="text-align: center">{{ model.sums.data1 }}</td>
155
- <td style="text-align: center">{{ model.sums.data2 }}</td>
156
- <td style="text-align: center">{{ model.sums.data3 }}</td>
157
- <td style="text-align: center">{{ model.sums.data4 }}</td>
158
- <td style="text-align: center">{{ model.sums.data5 }}</td>
159
- <td style="text-align: center">{{ model.sums.data6 }}</td>
160
- <td style="text-align: center">{{ (model.sums.data3/model.sums.data1 * 100.0).toFixed(2)}}%</td>
161
- <td style="text-align: center">{{ model.sums.data8 }}</td>
162
- <td style="text-align: center">{{ model.sums.data9 }}</td>
163
- </template>
164
- </data-grid>
165
- </criteria-paged>
166
- </div>
167
- </section>
168
- <modal :show.sync="modal_show" backdrop="false"
169
- class="allQuotaRecordModalShow" width="80%">
170
- <header slot="modal-header" class="modal-header" style="text-align: center">
171
- </header>
172
- <article slot="modal-body" class="modal-body">
173
- <criteria-paged :model="modalModel" v-ref:paged2>
174
- <criteria partial='criteria' class="search_area" v-ref:criteria2>
175
- <div partial>
176
- <div class="row">
177
- <div class="form-group col-sm-4">
178
- <label class="font_normal_body">开始时间</label>
179
- <datepicker
180
- placeholder='请选择'
181
- style="width:60%"
182
- :disabled-days-of-week="[]"
183
- :format="'yyyy-MM-dd'"
184
- :show-rest-button="reset"
185
- :value.sync="$parent.$parent.modalSearchData.start_time"
186
- v-model="$parent.$parent.modalSearchData.start_time"
187
- >
188
- </datepicker>
189
- </div>
190
- <div class="form-group col-sm-4">
191
- <label class="font_normal_body">结束时间</label>
192
- <datepicker
193
- placeholder='请选择'
194
- :disabled-days-of-week="[]"
195
- style="width:60%"
196
- :format="'yyyy-MM-dd'"
197
- :show-rest-button="reset"
198
- :value.sync="$parent.$parent.$parent.modalSearchData.end_time"
199
- v-model="$parent.$parent.$parent.modalSearchData.end_time">
200
- </datepicker>
201
- </div>
202
- <div class="col-sm-4 form-group">
203
- <label class="font_normal_body">用户编号</label>
204
- <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_userinfo_code">
205
- </div>
206
- <div class="col-sm-4 form-group">
207
- <label class="font_normal_body">用户名称</label>
208
- <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_user_name">
209
- </div>
210
- <div class="col-sm-4 form-group">
211
- <label class="font_normal_body">用户地址</label>
212
- <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_address">
213
- </div>
214
- <div class="col-sm-4 form-group">
215
- <label class="font_normal_body">用户电话</label>
216
- <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_user_phone">
217
- </div>
218
- <div class="col-sm-4 form-group">
219
- <label class="font_normal_body">小区</label>
220
- <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_residential_area">
221
- </div>
222
- <div class="col-sm-4 form-group">
223
- <label class="font_normal_body">安&nbsp;检&nbsp;员</label>
224
- <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_checker">
225
- </div>
226
- <div class="col-sm-4 form-group">
227
- <label class="font_normal_body">安检状态</label>
228
- <v-select :value.sync="$parent.$parent.$parent.modalSearchData.f_last_check_state" v-model='$parent.$parent.$parent.modalSearchData.f_last_check_state'
229
- :value-single="true" style="width: 60%"
230
- class="select_list select"
231
- :options='$parent.$parent.$parent.last_check_states' placeholder='安检状态'
232
- close-on-select
233
- ></v-select>
234
- </div>
235
- <div class="form-group col-sm-4">
236
- <label class="font_normal_body">用户类型</label>
237
- <v-select :value.sync="$parent.$parent.$parent.modalSearchData.f_user_type" v-model='$parent.$parent.$parent.modalSearchData.f_user_type'
238
- :value-single="true" style="width: 60%"
239
- class="select_list select"
240
- :options='$parent.$parent.$parent.user_types' placeholder='用户类型'
241
- close-on-select
242
- ></v-select>
243
- </div>
244
- <div class="col-sm-4 form-group">
245
- <label class="font_normal_body">到访次数</label>
246
- <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_check_version">
247
- </div>
248
- <div style="float: right">
249
- <button class="button_spacing button_search" @click="$parent.$parent.$parent.modalSearch()">查询</button>
250
- <export-excel-safe :data="$parent.$parent.$parent.modalSearchExcelData"
251
- :field="$parent.$parent.$parent.modalExcelHeaders"
252
- progress="safeGetExportProgress"
253
- sqlurl="rs/logic/SafeExportExcel" sql-name="safe_singleTable_OrderBy" template-name='安检情况明细'
254
- :choose-col="true"></export-excel-safe>
255
- </div>
256
- </div>
257
- </div>
258
- </criteria>
259
- <data-grid class="list_area table_sy" :model="$parent.$parent.modalModel" v-ref:modalgrid partial='list'>
260
- <template partial='head'>
261
- <th>
262
- <nobr>用户编号</nobr>
263
- </th>
264
- <th>
265
- <nobr>用户名称</nobr>
266
- </th>
267
- <th>
268
- <nobr>小区</nobr>
269
- </th>
270
- <th>
271
- <nobr>地址</nobr>
272
- </th>
273
- <th>
274
- <nobr>客户电话</nobr>
275
- </th>
276
- <th>
277
- <nobr>到访不遇次数</nobr>
278
- </th>
279
- <th>
280
- <nobr>安检时间</nobr>
281
- </th>
282
- <th>
283
- <nobr>安检员</nobr>
284
- </th>
285
- <th>
286
- <nobr>计划名称</nobr>
287
- </th>
288
- <th>
289
- <nobr>用户类型</nobr>
290
- </th>
291
- <th>
292
- <nobr>安检状态</nobr>
293
- </th>
294
- </template>
295
- <template partial='body'>
296
- <td style="text-align:center">{{row.f_userinfo_code}}</td>
297
- <td style="text-align:center">{{row.f_user_name }}</td>
298
- <td style="text-align:center">{{row.f_residential_area}}</td>
299
- <td style="text-align:center">{{row.f_address}}</td>
300
- <td style="text-align:center">{{row.f_user_phone}}</td>
301
- <td style="text-align:center">{{row.f_check_version}}</td>
302
- <td style="text-align:center">{{row.f_last_check_date}}</td>
303
- <td style="text-align:center">{{row.f_checker}}</td>
304
- <td style="text-align:center">{{row.f_plan_name}}</td>
305
- <td style="text-align:center">{{row.f_user_type}}</td>
306
- <td style="text-align:center">{{row.f_last_check_state}}</td>
307
- </template>
308
- </data-grid>
309
- </criteria-paged>
310
- </article>
311
- <footer slot="modal-footer" class="modal-footer">
312
- <button type="button" class="btn btn-default" @click='modal_show = false'>关闭</button>
313
- </footer>
314
- </modal>
315
- </div>
316
- </template>
317
- <script>
318
- import {PagedList, HttpResetClass} from 'vue-client'
319
- import * as Util from '../../Util'
320
-
321
- export default {
322
- title: '安检员考核',
323
- data () {
324
- let model = new PagedList('rs/sql/SafecheckSummary', 20, {
325
- f_filiale_id: 'this.f_filiale_id'
326
- },{data1:'',data2:'',data3:'',data4:'',data5:'',data6:'',data8:'',data9:''})
327
- model.f_filiale_id = `('${this.$login.f.orgid}')`
328
- return {
329
- modal_show:false,
330
- modalModel: new PagedList('rs/sql/safe_singleTable_OrderBy', 15, {
331
- items: '"tcpi.*,tcp.f_checker,tcp.f_plan_name"',
332
- tablename: '"t_check_plan_item tcpi left join t_check_plan tcp on tcpi.f_plan_id = tcp.id"',
333
- orderitem: '"1"'
334
- }),
335
- modalModel2: new PagedList('rs/sql/safe_singleTable_OrderBy', 15, {
336
- items: '"*,f_offsite_time as f_last_check_date,f_checker_name as f_checker,f_check_type as f_user_type,f_entry_status as f_last_check_state"',
337
- tablename: '"t_check_paper"',
338
- orderitem: '"1"'
339
- }),
340
- modalSearchData:{},
341
- modalSearchExcelData:{
342
- items: "tcpi.*,tcp.f_checker,tcp.f_plan_name",
343
- tablename: "t_check_plan_item tcpi left join t_check_plan tcp on tcpi.f_plan_id = tcp.id",
344
- orderitem: "f_userinfo_code"
345
- },
346
- modalExcelHeaders:{
347
- 'f_userinfo_code': '用户编号',
348
- 'f_user_name': '用户名称',
349
- 'f_residential_area': '小区',
350
- 'f_address': '地址',
351
- 'f_user_phone': '客户电话',
352
- 'f_check_version': '到访不遇次数',
353
- 'f_last_check_date': '安检时间',
354
- 'f_checker': '安检员',
355
- 'f_plan_name':"计划名称",
356
- 'f_user_type': '用户类型',
357
- 'f_last_check_state': '安检状态'
358
- },
359
- type:'',
360
- modalRow:{},
361
- last_check_states:[{label:'全部',value:''},{label:'入户',value:'入户'},{label:'拒检',value:'拒检'},{label:'到访不遇',value:'到访不遇'}],
362
- user_types: [{label:'全部',value:''},{label:'民用',value:'民用'},{label:'非民用',value:'非民用'}],
363
- f_filiale_id: `('${this.$login.f.orgid}')`, // 分公司id
364
- model: model,
365
- source: 'tool.getFullTree(this.getRights().where(row.getType() != $zone$).where(row.getType() == $organization$))', //获取公司参数
366
- userid: this.$login.f.id,
367
- orgname: '',
368
- // checker:{},
369
- searchData: {
370
- condition: {
371
- condition1 : '1=1',
372
- condition2 : `1=1 and f_entry_status = '入户'`
373
- },
374
- f_filiale_id: ''
375
- },
376
- print_model:{},
377
- excelHeaders: {
378
- 'checker': '安检员',
379
- 'data1': '计划安检总户数',
380
- 'data2': '未检户数',
381
- 'data3': '已检户数',
382
- 'data4': '入户户数',
383
- 'data5': '三次到访不遇户数',
384
- 'data6': '拒检户数',
385
- 'data7': '安检率',
386
- 'data8': '申请安检户数',
387
- 'data9': '总入户数'
388
- },
389
- defaultPrint: ['checker','data1','data2','data3','data4','data5','data6','data7','data8','data9'],
390
-
391
- }
392
- },
393
- methods: {
394
- async modalShow (row,type) {
395
- this.type = type
396
- this.modalRow = row
397
- this.modal_show = true
398
- this.modalSearchData = {}
399
- await this.modalSearch(row)
400
- },
401
- modalSearch () {
402
- this.modalModel = new PagedList('rs/sql/safe_singleTable_OrderBy', 15, {
403
- items: '"tcpi.*,tcp.f_checker,tcp.f_plan_name"',
404
- tablename: '"t_check_plan_item tcpi left join t_check_plan tcp on tcpi.f_plan_id = tcp.id"',
405
- orderitem: '"1"'
406
- })
407
- let modalCondition = '1=1'
408
- if (this.type == '0') {
409
- modalCondition = this.$refs.paged.model.condition.condition2
410
- modalCondition += ` and f_checker_name = '${this.modalRow.checker}'`
411
- modalCondition += ` and f_no_checkplan='无计划安检'`
412
- if (this.modalSearchData.f_user_name){
413
- modalCondition += ` and f_user_name = '${this.modalSearchData.f_user_name}'`
414
- }
415
- if (this.modalSearchData.f_residential_area){
416
- modalCondition += ` and f_residential_area = '${this.modalSearchData.f_residential_area}'`
417
- }
418
- if (this.modalSearchData.f_user_type){
419
- modalCondition += ` and f_check_type = '${this.modalSearchData.f_user_type}'`
420
- }
421
- if (this.modalSearchData.start_time){
422
- modalCondition += ` and f_offsite_time >= '${this.modalSearchData.start_time}'`
423
- }
424
- if (this.modalSearchData.end_time){
425
- modalCondition += ` and f_offsite_time <= '${this.modalSearchData.end_time}'`
426
- }
427
- if (this.modalSearchData.f_userinfo_code){
428
- modalCondition += ` and f_userinfo_code = '${this.modalSearchData.f_userinfo_code}'`
429
- }
430
- if (this.modalSearchData.f_address){
431
- modalCondition += ` and f_address = '${this.modalSearchData.f_address}'`
432
- }
433
- if (this.modalSearchData.f_user_phone){
434
- modalCondition += ` and f_user_phone = '${this.modalSearchData.f_user_phone}'`
435
- }
436
- if (this.modalSearchData.f_checker){
437
- modalCondition += ` and f_checker_name = '${this.modalSearchData.f_checker}'`
438
- }
439
- this.modalModel = this.modalModel2
440
- this.modalModel.search(modalCondition, this.modalModel)
441
- }else {
442
- modalCondition = this.$refs.paged.model.condition.condition1
443
- modalCondition += ` and f_checker = '${this.modalRow.checker}'`
444
- if (this.modalSearchData.f_last_check_state){
445
- modalCondition += ` and tcpi.f_last_check_state = '${this.modalSearchData.f_last_check_state}'`
446
- }
447
- if (this.modalSearchData.f_residential_area){
448
- modalCondition += ` and f_residential_area = '${this.modalSearchData.f_residential_area}'`
449
- }
450
- if (this.modalSearchData.f_user_name){
451
- modalCondition += ` and tcpi.f_user_name = '${this.modalSearchData.f_user_name}'`
452
- }
453
- if (this.modalSearchData.f_user_type){
454
- modalCondition += ` and tcpi.f_user_type = '${this.modalSearchData.f_user_type}'`
455
- }
456
- if (this.modalSearchData.start_time){
457
- modalCondition += ` and tcp.f_create_time >= '${this.modalSearchData.start_time}'`
458
- }
459
- if (this.modalSearchData.end_time){
460
- modalCondition += ` and tcp.f_create_time <= '${this.modalSearchData.end_time}'`
461
- }
462
- if (this.modalSearchData.f_userinfo_code){
463
- modalCondition += ` and tcpi.f_userinfo_code = '${this.modalSearchData.f_userinfo_code}'`
464
- }
465
- if (this.modalSearchData.f_address){
466
- modalCondition += ` and tcpi.f_address = '${this.modalSearchData.f_address}'`
467
- }
468
- if (this.modalSearchData.f_user_phone){
469
- modalCondition += ` and tcpi.f_user_phone = '${this.modalSearchData.f_user_phone}'`
470
- }
471
- if (this.modalSearchData.f_checker){
472
- modalCondition += ` and tcp.f_checker = '${this.modalSearchData.f_checker}'`
473
- }
474
- if (this.modalSearchData.f_check_version){
475
- modalCondition += ` and tcpi.f_check_version = '${this.modalSearchData.f_check_version}'`
476
- }
477
- this.modalModel.search(modalCondition, this.modalModel)
478
- }
479
- this.modalSearchExcelData.condition = modalCondition
480
- },
481
- getRes (obj) {
482
- this.f_filiale_id = this.$login.convertToIn(obj.resids)
483
- this.orgname = obj.res[0]
484
- this.$set('orgname', obj.res[0])
485
- },
486
- async selfSearch (args) {
487
- if (!this.f_filiale_id) {
488
- return this.$showMessage("请选择公司进行查询!!!")
489
- }
490
- this.model.f_filiale_id = this.f_filiale_id // 只有选择了下面的条件才会变化
491
- let condition = {
492
- condition1 : args.condition,
493
- condition2 : `1=1 and f_entry_status = '入户'`
494
- }
495
- if (args.model.f_checker_id){
496
- condition.condition2 += ` and f_checker_name = '${args.model.f_checker_id}'`
497
- }
498
- if (args.model.f_user_type){
499
- condition.condition2 += ` and f_check_type = '${args.model.f_user_type}'`
500
- }
501
- if (args.model.checkstart){
502
- condition.condition2 += ` and f_offsite_time >= '${args.model.checkstart}'`
503
- }
504
- if (args.model.checkend){
505
- condition.condition2 += ` and f_offsite_time <= '${args.model.checkend}'`
506
- }
507
- this.searchData.f_filiale_id = this.f_filiale_id //导出
508
- this.searchData.condition=args.condition //导出
509
- await this.model.search(condition, args.model)
510
- this.searchData.condition = condition
511
- this.sumsmodel = this.$refs.paged.$refs.grid.model.sums;
512
- this.print_model = JSON.parse(JSON.stringify(this.$refs.paged.$refs.grid.model))
513
- this.print_model.rows.push({
514
- checker: '合计',
515
- data1: this.sumsmodel.data1,
516
- data2: this.sumsmodel.data2,
517
- data3: this.sumsmodel.data3,
518
- data4: this.sumsmodel.data4,
519
- data5: this.sumsmodel.data5,
520
- data6: this.sumsmodel.data6,
521
- data7: `${(this.sumsmodel.data3/this.sumsmodel.data1*100.0).toFixed(2)}%`,
522
- data8: this.sumsmodel.data8,
523
- data9: this.sumsmodel.data9
524
- })
525
- this.print_model.totalPage = 0
526
- }
527
- },
528
- computed: {
529
- excelTitle() {
530
- return `${this.orgname }安检员考核`
531
- },
532
- getstart() {
533
- return `开始时间:${this.$refs.paged.$refs.cri.model.startDate} 结束时间:${this.$refs.paged.$refs.cri.model.endDate}`
534
- },
535
- },
536
- watch: {
537
- },
538
- ready () {
539
- this.orgname = this.$login.f.orgs
540
- //tag)
541
- //tag
542
- this.$refs.paged.$refs.cri.model.startDate=Util.toStartDateString() +' 00:00:00'
543
- this.$refs.paged.$refs.cri.model.endDate=Util.toEndDateString() +' 23:59:59'
544
-
545
- }
546
-
547
- }
548
- </script>
549
-
550
- <style lang="less" >
551
- .tableinfo {
552
- text-align: center;
553
- background-color: #00A3F0;
554
- color: #0c2e4d;
555
- font-size: 26px;
556
- }
557
- </style>
1
+ <template>
2
+ <div class="flex">
3
+ <section>
4
+ <div class="basic-main row" style="height: 100%">
5
+ <criteria-paged :model="model" v-ref:paged>
6
+ <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
7
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
8
+ <div class="row">
9
+ <div class="col-sm-3 form-group form-input-group" style="width: 30%;">
10
+ <role-selector-safe
11
+ role-name="安检员"
12
+ role-lable="安&nbsp;检&nbsp;员&nbsp;"
13
+ @re-res="$parent.$parent.getRes"
14
+ :value.sync="model.f_checker_id"
15
+ v-model="model.f_checker_id"
16
+ condition="f_checker = '{}'">
17
+ </role-selector-safe>
18
+ </div>
19
+ <div class="form-group col-sm-3 form-input-group" style="width: 20%;">
20
+ <label class="font_normal_body">用户类型</label>
21
+ <v-select :value.sync="model.f_user_type" v-model='model.f_user_type'
22
+ :value-single="true" style="width: 60%"
23
+ class="select_list select"
24
+ :options='$parent.$parent.user_types' placeholder='用户类型'
25
+ close-on-select
26
+ condition="f_user_type = '{}'"></v-select>
27
+ </div>
28
+ <div class="col-sm-3 form-group form-input-group" style="width: 20%;float: right;">
29
+ <print-data-safe :sum-field="$parent.$parent.excelHeaders" :model="$parent.$parent.print_model"
30
+ :field="$parent.$parent.excelHeaders"
31
+ :defaultfield="$parent.$parent.defaultPrint"
32
+ :titletable="'安检员考核'" :starthead="$parent.$parent.getstart"
33
+ ></print-data-safe>
34
+ <export-excel-safe :data="$parent.$parent.searchData"
35
+ :field="$parent.$parent.excelHeaders"
36
+ sqlurl="rs/logic/SafeExportExcel"
37
+ sql-name="SafecheckSummary"
38
+ :template-name="$parent.$parent.excelTitle">
39
+ </export-excel-safe>
40
+
41
+ <button type="button" name="button" class="button_search" style="margin-left: 9px" @click="search">查询</button>
42
+ </div>
43
+ </div>
44
+ <div class="row">
45
+ <div class="form-group col-sm-4">
46
+ <label class="font_normal_body">计划开始:</label>
47
+ <datepicker
48
+ placeholder='计划开始'
49
+ style="width:60%"
50
+ :disabled-days-of-week="[]"
51
+ :format="'yyyy-MM-dd'"
52
+ :show-rest-button="reset"
53
+ :value.sync="model.start_time"
54
+ v-model="model.start_time"
55
+ condition="tcp.f_create_time >= '{} 00:00:00'">
56
+ </datepicker>
57
+ </div>
58
+ <div class="form-group col-sm-4">
59
+ <label class="font_normal_body">计划结束:</label>
60
+ <datepicker
61
+ placeholder='计划结束'
62
+ :disabled-days-of-week="[]"
63
+ style="width:60%"
64
+ :format="'yyyy-MM-dd'"
65
+ :show-rest-button="reset"
66
+ :value.sync="model.end_time"
67
+ v-model="model.end_time"
68
+ condition="tcp.f_create_time <= '{} 23:59:59'">
69
+ </datepicker>
70
+ </div>
71
+ </div>
72
+ <div class="row">
73
+ <div class="col-sm-4 form-group">
74
+ <label for="startDate" class="font_normal_body">安检开始:</label>
75
+ <datepicker id="startDate" placeholder="安检开始"
76
+ v-model="model.checkstart"
77
+ :value.sync="model.checkstart"
78
+ style="width: 60%;"
79
+ :disabled-days-of-Week="[]"
80
+ :format="'yyyy-MM-dd 00:00:00'"
81
+ condition="tcpi.f_last_check_date >= '{}'"
82
+ :show-reset-button="reset">
83
+ </datepicker>
84
+ </div>
85
+ <div class="col-sm-4 form-group">
86
+ <label for="endDate" class="font_normal_body">安检结束:</label>
87
+ <datepicker id="endDate" placeholder="安检结束"
88
+ v-model="model.checkend"
89
+ :value.sync="model.checkend"
90
+ :disabled-days-of-Week="[]"
91
+ style="width: 60%;"
92
+ condition="tcpi.f_last_check_date <= '{}'"
93
+ :format="'yyyy-MM-dd 23:59:59'"
94
+ :show-reset-button="reset">
95
+ </datepicker>
96
+ </div>
97
+ </div>
98
+ </div>
99
+ </criteria>
100
+ <data-grid :model="model" partial='list' class="list_area table_sy" id="tongchuan" v-ref:grid >
101
+ <template partial='head'>
102
+ <tr>
103
+ <th>
104
+ <nobr>序号</nobr>
105
+ </th>
106
+ <th>
107
+ <nobr>安检员</nobr>
108
+ </th>
109
+ <th>
110
+ <nobr>计划安检总户数</nobr>
111
+ </th>
112
+ <th>
113
+ <nobr>未检户数</nobr>
114
+ </th>
115
+ <th>
116
+ <nobr>已检户数</nobr>
117
+ </th>
118
+ <th>
119
+ <nobr>入户户数</nobr>
120
+ </th>
121
+ <th>
122
+ <nobr>三次到访不遇户数</nobr>
123
+ </th>
124
+ <th>
125
+ <nobr>拒检户数</nobr>
126
+ </th>
127
+ <th>
128
+ <nobr>安检率</nobr>
129
+ </th>
130
+ <th>
131
+ <nobr>申请安检户数</nobr>
132
+ </th>
133
+ <th>
134
+ <nobr>总入户数</nobr>
135
+ </th>
136
+ </tr>
137
+ </template>
138
+ <template partial='body'>
139
+
140
+ <td style="text-align: center">{{ $index + 1 }}</td>
141
+ <td style="text-align: center">{{ row.checker }}</td>
142
+ <td style="text-align: center"><a @click="$parent.$parent.$parent.modalShow(row,'1')">{{ row.data1 }}</a></td>
143
+ <td style="text-align: center">{{ row.data2 }}</td>
144
+ <td style="text-align: center">{{ row.data3 }}</td>
145
+ <td style="text-align: center">{{ row.data4 }}</td>
146
+ <td style="text-align: center">{{ row.data5 }}</td>
147
+ <td style="text-align: center">{{ row.data6 }}</td>
148
+ <td style="text-align: center">{{ row.data7 }}</td>
149
+ <td style="text-align: center"><a @click="$parent.$parent.$parent.modalShow(row,'0')">{{ row.data8 }}</a></td>
150
+ <td style="text-align: center">{{ row.data9 }}</td>
151
+ </template>
152
+ <template partial="foot">
153
+ <td style="text-align: center" colspan="2"><span><b>合计:</b></span></td>
154
+ <td style="text-align: center">{{ model.sums.data1 }}</td>
155
+ <td style="text-align: center">{{ model.sums.data2 }}</td>
156
+ <td style="text-align: center">{{ model.sums.data3 }}</td>
157
+ <td style="text-align: center">{{ model.sums.data4 }}</td>
158
+ <td style="text-align: center">{{ model.sums.data5 }}</td>
159
+ <td style="text-align: center">{{ model.sums.data6 }}</td>
160
+ <td style="text-align: center">{{ (model.sums.data3/model.sums.data1 * 100.0).toFixed(2)}}%</td>
161
+ <td style="text-align: center">{{ model.sums.data8 }}</td>
162
+ <td style="text-align: center">{{ model.sums.data9 }}</td>
163
+ </template>
164
+ </data-grid>
165
+ </criteria-paged>
166
+ </div>
167
+ </section>
168
+ <modal :show.sync="modal_show" backdrop="false"
169
+ class="allQuotaRecordModalShow" width="80%">
170
+ <header slot="modal-header" class="modal-header" style="text-align: center">
171
+ </header>
172
+ <article slot="modal-body" class="modal-body">
173
+ <criteria-paged :model="modalModel" v-ref:paged2>
174
+ <criteria partial='criteria' class="search_area" v-ref:criteria2>
175
+ <div partial>
176
+ <div class="row">
177
+ <div class="form-group col-sm-4">
178
+ <label class="font_normal_body">开始时间</label>
179
+ <datepicker
180
+ placeholder='请选择'
181
+ style="width:60%"
182
+ :disabled-days-of-week="[]"
183
+ :format="'yyyy-MM-dd'"
184
+ :show-rest-button="reset"
185
+ :value.sync="$parent.$parent.modalSearchData.start_time"
186
+ v-model="$parent.$parent.modalSearchData.start_time"
187
+ >
188
+ </datepicker>
189
+ </div>
190
+ <div class="form-group col-sm-4">
191
+ <label class="font_normal_body">结束时间</label>
192
+ <datepicker
193
+ placeholder='请选择'
194
+ :disabled-days-of-week="[]"
195
+ style="width:60%"
196
+ :format="'yyyy-MM-dd'"
197
+ :show-rest-button="reset"
198
+ :value.sync="$parent.$parent.$parent.modalSearchData.end_time"
199
+ v-model="$parent.$parent.$parent.modalSearchData.end_time">
200
+ </datepicker>
201
+ </div>
202
+ <div class="col-sm-4 form-group">
203
+ <label class="font_normal_body">用户编号</label>
204
+ <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_userinfo_code">
205
+ </div>
206
+ <div class="col-sm-4 form-group">
207
+ <label class="font_normal_body">用户名称</label>
208
+ <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_user_name">
209
+ </div>
210
+ <div class="col-sm-4 form-group">
211
+ <label class="font_normal_body">用户地址</label>
212
+ <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_address">
213
+ </div>
214
+ <div class="col-sm-4 form-group">
215
+ <label class="font_normal_body">用户电话</label>
216
+ <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_user_phone">
217
+ </div>
218
+ <div class="col-sm-4 form-group">
219
+ <label class="font_normal_body">小区</label>
220
+ <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_residential_area">
221
+ </div>
222
+ <div class="col-sm-4 form-group">
223
+ <label class="font_normal_body">安&nbsp;检&nbsp;员</label>
224
+ <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_checker">
225
+ </div>
226
+ <div class="col-sm-4 form-group">
227
+ <label class="font_normal_body">安检状态</label>
228
+ <v-select :value.sync="$parent.$parent.$parent.modalSearchData.f_last_check_state" v-model='$parent.$parent.$parent.modalSearchData.f_last_check_state'
229
+ :value-single="true" style="width: 60%"
230
+ class="select_list select"
231
+ :options='$parent.$parent.$parent.last_check_states' placeholder='安检状态'
232
+ close-on-select
233
+ ></v-select>
234
+ </div>
235
+ <div class="form-group col-sm-4">
236
+ <label class="font_normal_body">用户类型</label>
237
+ <v-select :value.sync="$parent.$parent.$parent.modalSearchData.f_user_type" v-model='$parent.$parent.$parent.modalSearchData.f_user_type'
238
+ :value-single="true" style="width: 60%"
239
+ class="select_list select"
240
+ :options='$parent.$parent.$parent.user_types' placeholder='用户类型'
241
+ close-on-select
242
+ ></v-select>
243
+ </div>
244
+ <div class="col-sm-4 form-group">
245
+ <label class="font_normal_body">到访次数</label>
246
+ <input style="width: 60%" class="input_search" v-model="$parent.$parent.$parent.modalSearchData.f_check_version">
247
+ </div>
248
+ <div style="float: right">
249
+ <button class="button_spacing button_search" @click="$parent.$parent.$parent.modalSearch()">查询</button>
250
+ <export-excel-safe :data="$parent.$parent.$parent.modalSearchExcelData"
251
+ :field="$parent.$parent.$parent.modalExcelHeaders"
252
+ progress="safeGetExportProgress"
253
+ sqlurl="rs/logic/SafeExportExcel" sql-name="safe_singleTable_OrderBy" template-name='安检情况明细'
254
+ :choose-col="true"></export-excel-safe>
255
+ </div>
256
+ </div>
257
+ </div>
258
+ </criteria>
259
+ <data-grid class="list_area table_sy" :model="$parent.$parent.modalModel" v-ref:modalgrid partial='list'>
260
+ <template partial='head'>
261
+ <th>
262
+ <nobr>用户编号</nobr>
263
+ </th>
264
+ <th>
265
+ <nobr>用户名称</nobr>
266
+ </th>
267
+ <th>
268
+ <nobr>小区</nobr>
269
+ </th>
270
+ <th>
271
+ <nobr>地址</nobr>
272
+ </th>
273
+ <th>
274
+ <nobr>客户电话</nobr>
275
+ </th>
276
+ <th>
277
+ <nobr>到访不遇次数</nobr>
278
+ </th>
279
+ <th>
280
+ <nobr>安检时间</nobr>
281
+ </th>
282
+ <th>
283
+ <nobr>安检员</nobr>
284
+ </th>
285
+ <th>
286
+ <nobr>计划名称</nobr>
287
+ </th>
288
+ <th>
289
+ <nobr>用户类型</nobr>
290
+ </th>
291
+ <th>
292
+ <nobr>安检状态</nobr>
293
+ </th>
294
+ </template>
295
+ <template partial='body'>
296
+ <td style="text-align:center">{{row.f_userinfo_code}}</td>
297
+ <td style="text-align:center">{{row.f_user_name }}</td>
298
+ <td style="text-align:center">{{row.f_residential_area}}</td>
299
+ <td style="text-align:center">{{row.f_address}}</td>
300
+ <td style="text-align:center">{{row.f_user_phone}}</td>
301
+ <td style="text-align:center">{{row.f_check_version}}</td>
302
+ <td style="text-align:center">{{row.f_last_check_date}}</td>
303
+ <td style="text-align:center">{{row.f_checker}}</td>
304
+ <td style="text-align:center">{{row.f_plan_name}}</td>
305
+ <td style="text-align:center">{{row.f_user_type}}</td>
306
+ <td style="text-align:center">{{row.f_last_check_state}}</td>
307
+ </template>
308
+ </data-grid>
309
+ </criteria-paged>
310
+ </article>
311
+ <footer slot="modal-footer" class="modal-footer">
312
+ <button type="button" class="btn btn-default" @click='modal_show = false'>关闭</button>
313
+ </footer>
314
+ </modal>
315
+ </div>
316
+ </template>
317
+ <script>
318
+ import {PagedList, HttpResetClass} from 'vue-client'
319
+ import * as Util from '../../Util'
320
+
321
+ export default {
322
+ title: '安检员考核',
323
+ data () {
324
+ let model = new PagedList('rs/sql/SafecheckSummary', 20, {
325
+ f_filiale_id: 'this.f_filiale_id'
326
+ },{data1:'',data2:'',data3:'',data4:'',data5:'',data6:'',data8:'',data9:''})
327
+ model.f_filiale_id = `('${this.$login.f.orgid}')`
328
+ return {
329
+ modal_show:false,
330
+ modalModel: new PagedList('rs/sql/safe_singleTable_OrderBy', 15, {
331
+ items: '"tcpi.*,tcp.f_checker,tcp.f_plan_name"',
332
+ tablename: '"t_check_plan_item tcpi left join t_check_plan tcp on tcpi.f_plan_id = tcp.id"',
333
+ orderitem: '"1"'
334
+ }),
335
+ modalModel2: new PagedList('rs/sql/safe_singleTable_OrderBy', 15, {
336
+ items: '"*,f_offsite_time as f_last_check_date,f_checker_name as f_checker,f_check_type as f_user_type,f_entry_status as f_last_check_state"',
337
+ tablename: '"t_check_paper"',
338
+ orderitem: '"1"'
339
+ }),
340
+ modalSearchData:{},
341
+ modalSearchExcelData:{
342
+ items: "tcpi.*,tcp.f_checker,tcp.f_plan_name",
343
+ tablename: "t_check_plan_item tcpi left join t_check_plan tcp on tcpi.f_plan_id = tcp.id",
344
+ orderitem: "f_userinfo_code"
345
+ },
346
+ modalExcelHeaders:{
347
+ 'f_userinfo_code': '用户编号',
348
+ 'f_user_name': '用户名称',
349
+ 'f_residential_area': '小区',
350
+ 'f_address': '地址',
351
+ 'f_user_phone': '客户电话',
352
+ 'f_check_version': '到访不遇次数',
353
+ 'f_last_check_date': '安检时间',
354
+ 'f_checker': '安检员',
355
+ 'f_plan_name':"计划名称",
356
+ 'f_user_type': '用户类型',
357
+ 'f_last_check_state': '安检状态'
358
+ },
359
+ type:'',
360
+ modalRow:{},
361
+ last_check_states:[{label:'全部',value:''},{label:'入户',value:'入户'},{label:'拒检',value:'拒检'},{label:'到访不遇',value:'到访不遇'}],
362
+ user_types: [{label:'全部',value:''},{label:'民用',value:'民用'},{label:'非民用',value:'非民用'}],
363
+ f_filiale_id: `('${this.$login.f.orgid}')`, // 分公司id
364
+ model: model,
365
+ source: 'tool.getFullTree(this.getRights().where(row.getType() != $zone$).where(row.getType() == $organization$))', //获取公司参数
366
+ userid: this.$login.f.id,
367
+ orgname: '',
368
+ // checker:{},
369
+ searchData: {
370
+ condition: {
371
+ condition1 : '1=1',
372
+ condition2 : `1=1 and f_entry_status = '入户'`
373
+ },
374
+ f_filiale_id: ''
375
+ },
376
+ print_model:{},
377
+ excelHeaders: {
378
+ 'checker': '安检员',
379
+ 'data1': '计划安检总户数',
380
+ 'data2': '未检户数',
381
+ 'data3': '已检户数',
382
+ 'data4': '入户户数',
383
+ 'data5': '三次到访不遇户数',
384
+ 'data6': '拒检户数',
385
+ 'data7': '安检率',
386
+ 'data8': '申请安检户数',
387
+ 'data9': '总入户数'
388
+ },
389
+ defaultPrint: ['checker','data1','data2','data3','data4','data5','data6','data7','data8','data9'],
390
+
391
+ }
392
+ },
393
+ methods: {
394
+ async modalShow (row,type) {
395
+ this.type = type
396
+ this.modalRow = row
397
+ this.modal_show = true
398
+ this.modalSearchData = {}
399
+ await this.modalSearch(row)
400
+ },
401
+ modalSearch () {
402
+ this.modalModel = new PagedList('rs/sql/safe_singleTable_OrderBy', 15, {
403
+ items: '"tcpi.*,tcp.f_checker,tcp.f_plan_name"',
404
+ tablename: '"t_check_plan_item tcpi left join t_check_plan tcp on tcpi.f_plan_id = tcp.id"',
405
+ orderitem: '"1"'
406
+ })
407
+ let modalCondition = '1=1'
408
+ if (this.type == '0') {
409
+ modalCondition = this.$refs.paged.model.condition.condition2
410
+ modalCondition += ` and f_checker_name = '${this.modalRow.checker}'`
411
+ modalCondition += ` and f_no_checkplan='无计划安检'`
412
+ if (this.modalSearchData.f_user_name){
413
+ modalCondition += ` and f_user_name = '${this.modalSearchData.f_user_name}'`
414
+ }
415
+ if (this.modalSearchData.f_residential_area){
416
+ modalCondition += ` and f_residential_area = '${this.modalSearchData.f_residential_area}'`
417
+ }
418
+ if (this.modalSearchData.f_user_type){
419
+ modalCondition += ` and f_check_type = '${this.modalSearchData.f_user_type}'`
420
+ }
421
+ if (this.modalSearchData.start_time){
422
+ modalCondition += ` and f_offsite_time >= '${this.modalSearchData.start_time}'`
423
+ }
424
+ if (this.modalSearchData.end_time){
425
+ modalCondition += ` and f_offsite_time <= '${this.modalSearchData.end_time}'`
426
+ }
427
+ if (this.modalSearchData.f_userinfo_code){
428
+ modalCondition += ` and f_userinfo_code = '${this.modalSearchData.f_userinfo_code}'`
429
+ }
430
+ if (this.modalSearchData.f_address){
431
+ modalCondition += ` and f_address = '${this.modalSearchData.f_address}'`
432
+ }
433
+ if (this.modalSearchData.f_user_phone){
434
+ modalCondition += ` and f_user_phone = '${this.modalSearchData.f_user_phone}'`
435
+ }
436
+ if (this.modalSearchData.f_checker){
437
+ modalCondition += ` and f_checker_name = '${this.modalSearchData.f_checker}'`
438
+ }
439
+ this.modalModel = this.modalModel2
440
+ this.modalModel.search(modalCondition, this.modalModel)
441
+ }else {
442
+ modalCondition = this.$refs.paged.model.condition.condition1
443
+ modalCondition += ` and f_checker = '${this.modalRow.checker}'`
444
+ if (this.modalSearchData.f_last_check_state){
445
+ modalCondition += ` and tcpi.f_last_check_state = '${this.modalSearchData.f_last_check_state}'`
446
+ }
447
+ if (this.modalSearchData.f_residential_area){
448
+ modalCondition += ` and f_residential_area = '${this.modalSearchData.f_residential_area}'`
449
+ }
450
+ if (this.modalSearchData.f_user_name){
451
+ modalCondition += ` and tcpi.f_user_name = '${this.modalSearchData.f_user_name}'`
452
+ }
453
+ if (this.modalSearchData.f_user_type){
454
+ modalCondition += ` and tcpi.f_user_type = '${this.modalSearchData.f_user_type}'`
455
+ }
456
+ if (this.modalSearchData.start_time){
457
+ modalCondition += ` and tcp.f_create_time >= '${this.modalSearchData.start_time}'`
458
+ }
459
+ if (this.modalSearchData.end_time){
460
+ modalCondition += ` and tcp.f_create_time <= '${this.modalSearchData.end_time}'`
461
+ }
462
+ if (this.modalSearchData.f_userinfo_code){
463
+ modalCondition += ` and tcpi.f_userinfo_code = '${this.modalSearchData.f_userinfo_code}'`
464
+ }
465
+ if (this.modalSearchData.f_address){
466
+ modalCondition += ` and tcpi.f_address = '${this.modalSearchData.f_address}'`
467
+ }
468
+ if (this.modalSearchData.f_user_phone){
469
+ modalCondition += ` and tcpi.f_user_phone = '${this.modalSearchData.f_user_phone}'`
470
+ }
471
+ if (this.modalSearchData.f_checker){
472
+ modalCondition += ` and tcp.f_checker = '${this.modalSearchData.f_checker}'`
473
+ }
474
+ if (this.modalSearchData.f_check_version){
475
+ modalCondition += ` and tcpi.f_check_version = '${this.modalSearchData.f_check_version}'`
476
+ }
477
+ this.modalModel.search(modalCondition, this.modalModel)
478
+ }
479
+ this.modalSearchExcelData.condition = modalCondition
480
+ },
481
+ getRes (obj) {
482
+ this.f_filiale_id = this.$login.convertToIn(obj.resids)
483
+ this.orgname = obj.res[0]
484
+ this.$set('orgname', obj.res[0])
485
+ },
486
+ async selfSearch (args) {
487
+ if (!this.f_filiale_id) {
488
+ return this.$showMessage("请选择公司进行查询!!!")
489
+ }
490
+ this.model.f_filiale_id = this.f_filiale_id // 只有选择了下面的条件才会变化
491
+ let condition = {
492
+ condition1 : args.condition,
493
+ condition2 : `1=1 and f_entry_status = '入户'`
494
+ }
495
+ if (args.model.f_checker_id){
496
+ condition.condition2 += ` and f_checker_name = '${args.model.f_checker_id}'`
497
+ }
498
+ if (args.model.f_user_type){
499
+ condition.condition2 += ` and f_check_type = '${args.model.f_user_type}'`
500
+ }
501
+ if (args.model.checkstart){
502
+ condition.condition2 += ` and f_offsite_time >= '${args.model.checkstart}'`
503
+ }
504
+ if (args.model.checkend){
505
+ condition.condition2 += ` and f_offsite_time <= '${args.model.checkend}'`
506
+ }
507
+ this.searchData.f_filiale_id = this.f_filiale_id //导出
508
+ this.searchData.condition=args.condition //导出
509
+ await this.model.search(condition, args.model)
510
+ this.searchData.condition = condition
511
+ this.sumsmodel = this.$refs.paged.$refs.grid.model.sums;
512
+ this.print_model = JSON.parse(JSON.stringify(this.$refs.paged.$refs.grid.model))
513
+ this.print_model.rows.push({
514
+ checker: '合计',
515
+ data1: this.sumsmodel.data1,
516
+ data2: this.sumsmodel.data2,
517
+ data3: this.sumsmodel.data3,
518
+ data4: this.sumsmodel.data4,
519
+ data5: this.sumsmodel.data5,
520
+ data6: this.sumsmodel.data6,
521
+ data7: `${(this.sumsmodel.data3/this.sumsmodel.data1*100.0).toFixed(2)}%`,
522
+ data8: this.sumsmodel.data8,
523
+ data9: this.sumsmodel.data9
524
+ })
525
+ this.print_model.totalPage = 0
526
+ }
527
+ },
528
+ computed: {
529
+ excelTitle() {
530
+ return `${this.orgname }安检员考核`
531
+ },
532
+ getstart() {
533
+ return `开始时间:${this.$refs.paged.$refs.cri.model.startDate} 结束时间:${this.$refs.paged.$refs.cri.model.endDate}`
534
+ },
535
+ },
536
+ watch: {
537
+ },
538
+ ready () {
539
+ this.orgname = this.$login.f.orgs
540
+ //tag)
541
+ //tag
542
+ this.$refs.paged.$refs.cri.model.startDate=Util.toStartDateString() +' 00:00:00'
543
+ this.$refs.paged.$refs.cri.model.endDate=Util.toEndDateString() +' 23:59:59'
544
+
545
+ }
546
+
547
+ }
548
+ </script>
549
+
550
+ <style lang="less" >
551
+ .tableinfo {
552
+ text-align: center;
553
+ background-color: #00A3F0;
554
+ color: #0c2e4d;
555
+ font-size: 26px;
556
+ }
557
+ </style>