safecheck-client 4.0.0-61 → 4.0.0-64

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,2400 +1,2400 @@
1
- <template>
2
- <div id="savebut" class="no-close row android-repair-order" style="background-color: #f9f9f9">
3
- <div class="col-sm-12 col-xs-12" >
4
- <ul class="nav nav-tabs" style="background:#ffffff;overflow-y: hidden">
5
- <li v-for="row in tabs" @click="tabSelect(row,$index)" :class="{active1: row.complete === componentName}"
6
- v-if="$index < number+1 && $index < faultshow.number" >
7
- <a href="#" style="background-color: #ffffff;color: #666666;font-size: 16px;font-family:SimSun" :class="row.class">
8
- <span class="spanboder">{{row.header}}</span>
9
- <img class="butt2" :src="imgback(row.complete === componentName,row.header === header)"></a>
10
- <p></p>
11
- </li>
12
- <div class="col-sm-12 col-xs-12 repair-bg" v-show="routeShow">
13
- <route name='repair' :reuse="false"></route>
14
- </div>
15
- <li v-for="row in tabs" @click="tabSelect(row,$index)" :class="{active1: row.complete === componentName}"
16
- v-if="$index > number && $index < faultshow.number ">
17
- <a href="#" style="background-color: #ffffff;color: #666666;font-size: 16px;font-family:SimSun" :class="row.class">
18
- <span class="spanboder">{{row.header}}</span>
19
- <img class="butt2" :src="imgback(row.complete === componentName,row.header === header)"></a>
20
- <p></p>
21
- </li>
22
- <div class="col-sm-12 col-xs-12 repair-bg" v-if="actionEnabled ">
23
- <div class="auto select-overspread form-horizontal repair-bg " style="padding-bottom:5px;">
24
- <div class="bq-parent">
25
- <blockquote class="blockquote">
26
- <p>安检上传</p>
27
- </blockquote>
28
- </div>
29
- <div class="panel panel-default auto repair-info-content">
30
- <div class="panel-body ">
31
- <div class="row auto">
32
- <!--<div class="col-xs-12 col-sm-12 col-md-12" :style="timeSet(this.isneedDate)?'':'display:none'">-->
33
- <!--<label>请输入超期原因:</label><br/>-->
34
- <!--<textarea style="width: 100%;" v-model=""></textarea>-->
35
- <!--</div>-->
36
- <div class="col-xs-12 col-sm-12 col-md-12 flex-between" style="margin-top: 20px;">
37
- <div class="col-xs-3 col-sm-3 col-md-3" v-if="parentPage=='CurrentCreate'">
38
- <button type="button" name="button" class="col-sm-3 btn btn-primary" @click="save('temp')">
39
- 临时保存
40
- </button>
41
- </div>
42
- <div class="col-xs-3 col-sm-3 col-md-3">
43
- <button class="col-sm-3 btn btn-primary" @click="save('finish')">
44
- 本地缓存
45
- </button>
46
- </div>
47
- <div class="col-xs-3 col-sm-3 col-md-3">
48
- <button type="button" name="button" class="col-sm-3 btn btn-primary" @click="uploadCheckPaper">
49
- 上传
50
- </button>
51
- </div>
52
- <div v-if="show_torepair">
53
- <button type="button" name="button" class="col-sm-3 btn btn-primary" @click="showmod">
54
- 转维修
55
- </button>
56
- </div>
57
- </div>
58
- </div>
59
- </div>
60
- </div>
61
- </div>
62
- </div>
63
- </ul>
64
- </div>
65
- <modal :show.sync="showModal2" :backdrop="false" style="font-size: 15px">
66
- <div slot="modal-header" class="modal-header upuserinfo_sel">
67
- <h4 class="modal-title">
68
- 转维修
69
- </h4>
70
- </div>
71
- <div slot="modal-body" class="modal-body">
72
- <div class="row">
73
- <ol style="border: 1px solid green;padding: 15px 0 15px 20px">
74
- <li v-for="row in repairDefect.data" >{{row}}</li>
75
- </ol>
76
- </div>
77
- <div class="row" style="margin-top: 10px">
78
- <label class="font_normal_body">派发类型</label>
79
- <v-select :value.sync="selectData.dispatchType" :value-single="true" v-model="selectData.dispatchType"
80
- :options='dispatchTypeOptions' placeholder='派发类型'
81
- close-on-select>
82
- </v-select>
83
- </div>
84
- <div class="row" style="margin-top: 10px" v-if="selectData.dispatchType=='派发给维修员'">
85
- <label class="font_normal_body">维&ensp;修&ensp;员</label>
86
- <v-select
87
- :value.sync="selectData.f_repairman"
88
- :value-single="true"
89
- :options='repairers'
90
- placeholder='请选择维修员'
91
- close-on-select></v-select>
92
- </div>
93
- <div class="row" style="margin-top: 10px" v-if="selectData.dispatchType=='派发给站点'">
94
- <label class="font_normal_body">站&ensp;&ensp;&ensp;&ensp;点</label>
95
- <right-tree
96
- islist
97
- :source="'dep=this.getParentByType($organization$).getSpecialResByType($department$),tool.getFullTree(dep.where(row.hasSpecialRole($派单员$)))'"
98
- @re-res="getSiteRes"></right-tree>
99
- </div>
100
- <div class="row" style="margin-top: 10px">
101
- <label class="font_normal_body">报修类型</label>
102
- <v-select :value.sync="selectData.f_repairtype"
103
- class="select select_list" @change="getDays"
104
- :value-single="true"
105
- :options='repairTypeOptions'
106
- close-on-select>
107
- </v-select>
108
- </div>
109
- <div class="row" style="margin-top: 10px">
110
- <label class="font_normal_body">截止天数</label>
111
- <v-select :value="selectData.day" :value-single="true"
112
- v-model="selectData.day" class="select select_list"
113
- :options='days' placeholder='请选择截止天数'
114
- close-on-select
115
- v-on:change="daychange" style="width: 60%"></v-select>
116
- </div>
117
- <div class="row" style="margin-top: 10px">
118
- <label class="font_normal_body">截止时间</label>
119
- <datepicker placeholder="请选择截至时间"
120
- :value.sync="selectData.f_finish_date"
121
- v-model="selectData.f_finish_date"
122
- :format="'yyyy-MM-dd HH:mm:ss'"
123
- style="width: 60%"
124
- :disabled="true"></datepicker>
125
- </div>
126
- <div class="row" style="margin-top: 10px">
127
- <label class="font_normal_body" >备&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;注</label>
128
- <div class="btn-group" style="width:60%">
129
- <textarea style="width:100%;height: 100px" v-model="selectData.f_remarks"></textarea>
130
- </div>
131
- </div>
132
- </div>
133
- <div slot="modal-footer" class="modal-footer" style="text-align: center">
134
- <button type="button" name="button" class="col-sm-3 btn btn-primary" @click="rectification">转维修</button>
135
- <button type="button" name="button" class="col-sm-3 btn btn-primary" @click="cancel1">取消</button>
136
- </div>
137
- </modal>
138
- </div>
139
- </template>
140
-
141
- <script>
142
- import Vue from 'vue'
143
- import * as Util from '../../../components/Util'
144
- import { HttpResetClass } from 'vue-client'
145
- import co from 'co'
146
- import $ from "jquery";
147
- import MeterReading from './MeterReading'
148
- let loadParamGem = async function (self) {
149
- await self.$LoadParams.loadParam()
150
- }
151
-
152
- export default {
153
- title: '安检单',
154
- props: ['f_plan_id', 'item', 'role','parentPage','source'],
155
- // props: ['f_plan_id', 'role'],
156
- data() {
157
- return {
158
- //测试数据
159
- // f_plan_id:'',
160
- // role:'inspect',
161
- // item:{"f_approved_time":null,"f_user_family_remarks":null,"f_street":"测试街道","f_repair_approved_time":null,
162
- // "f_user_type":null,"f_approved_by":null,"f_card_id":null,"f_remark":null,"f_building":"1","f_batch_number":null,
163
- // "f_idnumber":null,"f_state":"未检","id":"0EFE0EE2-B155-46F9-8DE0-38C022664A4D","f_complete":null,"f_check_state":null,"f_last_check_state":"拒检",
164
- // "f_user_inhome_time":null,"f_residential_area":"测试小区1","version":1,"f_processid":null,"f_last_check_result":"{\"result\":\"正常\",\"data\":[]}",
165
- // "f_area":null,"f_usegas":null,"f_user_phone":"16566546548","f_slice_area":"营业大区","f_approved":"未审核","f_upload_state":"未传","f_user_check_time":null,
166
- // "f_unit":"1","f_user_spare_phone":null,"f_last_check_date":null,"f_userproperties":null,"f_userfile_id":null,"f_prearranged_date":null,"f_filialeid":"453",
167
- // "f_branch":null,"f_orgstr":null,"f_plan_year":2020,"f_orgid":null,"f_approval_notified":null,"f_plan_month":4,"f_approved_note":null,"f_filialeids":null,
168
- // "f_floor":"1","f_flag":null,"f_repair_approved_note":null,"f_userinfo_code":"00000002","f_create_time":"2020-05-10 18:56:03","f_meter_no":"","f_station":null,
169
- // "f_repair_approved":"未审核","f_no_checkplan":"有计划安检","f_plan_name":"关于","f_repair_approved_by":null,"f_room":"1","f_office":null,"f_comments":null,
170
- // "f_address":"兰山街道泰盛小区1栋1单元1层1室","id_back":null,"f_userinfoid":"2","f_subcompany":null,"f_addressid":null,"f_user_phone2":null,
171
- // "f_user_equipment_remarks":null,"f_plan_id":"0819ea6707ad4d9dad217c06a87f4227","f_user_name":"用户二",
172
- // "f_plan_meters":[{"f_weizhi":null,"f_flow_direction":"右表","f_metertitles":"","f_prior_reading":0,"f_meter_no":"2119035714","f_collection_type":"按金额","f_aliasname":"先锋系统结算物联网表","f_meter_type":"物联网表","version":3,"f_maker":null,"f_metergasnums":0,"f_total_fee":100,"f_diaphgram_size":"G2.5","f_total_gas":0,"id":18663},{"f_weizhi":null,"f_flow_direction":"右表","f_metertitles":"","f_prior_reading":0,"f_meter_no":"2118999901","f_collection_type":"按金额","f_aliasname":"先锋系统结算物联网表","f_meter_type":"物联网表","version":1,"f_maker":null,"f_metergasnums":0,"f_total_fee":0,"f_diaphgram_size":"G2.5","f_total_gas":0,"id":18663}]
173
- // },
174
-
175
- data: {
176
- f_devices: [],
177
- f_defect_content:'',
178
- f_recording1_path:'',
179
- f_visit_number:'',
180
- f_remark:''
181
- },
182
- imgsnum:this.$appdata.getSingleValue('安检总体照片数量') ? this.$appdata.getSingleValue('安检总体照片数量'):1, // 安检整体照片默认必须拍1张
183
- updateuserphone:false, //安检时是否更新用户电话
184
- updatemetermodel:false, //安检时是否更新表型号
185
- updatemeternumber:false, //安检时是否更新表号
186
- beforephone:'',
187
- isUpload:false,
188
- show_torepair: false,
189
- onlySave:true, //判断保存还是保存并上传
190
- livedispose:'',
191
- refuseinspection:'', // 拒检拍照是否提示
192
- notencountered:'', // 到访不遇拍照是否提示
193
- startClick:false, //开始安检按钮是否可点击
194
- isStrat: false, //是否开始安检
195
- checkResult:{},//查询结果
196
- newcheckResult:{},
197
- repairDefect : {
198
- result: '正常',
199
- data: []
200
- },
201
- rowCodata:{},
202
- repairers: [],
203
- timer: null,
204
- showModal: false,
205
- showModal2:false,
206
- pic_to_be_viewed: '',
207
- showBack:true,
208
- devices: [],
209
- f_devices : [],
210
- isToRepair:false,
211
- clickBack:true, //是否点击返回按钮
212
- isSafeCheckToRepair:false,//是否转维修
213
- Url:this.$androidUtil.getProxyUrl(),
214
- detail:{},
215
- defectDevice:{},
216
- user:{},
217
- is_has_jingweidu: this.$appdata.getSingleValue('照片水印加经纬度') || 'false',
218
- dispatchTypeOptions: [{label: '派发给维修员', value: '派发给维修员'},{label: '派发给站点', value: '派发给站点'}],
219
- selectData:{
220
- f_finish_date:'',
221
- day:'',
222
- dispatchType:'派发给维修员',
223
- f_repairman:'',
224
- f_remarks:'',
225
- f_repairtype:''
226
- },
227
- model: { //转维修数据
228
- // 一次派单
229
- serviceacitivity: [{
230
- f_service_acitivity_type: '派单'
231
- }],
232
- f_source:'安检',
233
- f_service_id: '',
234
- f_contact_phone: '',
235
- f_meetunit: '',
236
- f_phone: '',
237
- f_user_name: '',
238
- f_address: '',
239
- f_repair_date: Util.toStandardTimeString(),
240
- f_card_id: '',
241
- // f_department: '', 站点选择
242
- f_reciever:'',
243
- f_remarks: '',
244
- f_user_type: '',
245
- f_area: '',
246
- f_unit_name:'',
247
- f_street: '',
248
- f_residential_area: '',
249
- f_building: '',
250
- f_unit: '',
251
- f_floor: '',
252
- f_room: '',
253
- aState: null,
254
- f_repairtype: '',
255
- f_repairitems:{},
256
- },
257
- repairitems:[],
258
- meading:'转站点',
259
- repairTypeOptions:this.$appdata.getParam('报修类型'),
260
- config: {
261
- "燃气表":{
262
- "checkmust":true,
263
- "index":1,
264
- "items":{
265
- //"燃气表照片":{"index":1,"type":"picture","remark":"(拍摄清晰的表具编号、字轮数、剩余气量等)"},
266
- "基表编号":{"index":1,"type":"string","readonly":true},
267
- "气表型号":{"index":2,"type":"string","readonly":true},
268
- "气表品牌":{"index":3,"type":"string","readonly":true},
269
- "进气方向":{"index":4,"type":"string","readonly":true},
270
- "初始表底":{"index":5,"type":"number","isshow":false,"readonly":true},
271
- "上期表读数":{"index":6,"type":"number","readonly":true,isshow:false},
272
- "累购气量":{"index":7,"type":"number","readonly":true},
273
- "累购金额":{"index":7,"type":"number","readonly":true},
274
- "已用气量":{"index":8,"type":"number","checkmust": false},//基表数
275
- "已用金额":{"index":8,"type":"number","checkmust": false},
276
- "剩余气量":{"index":9,"type":"number","checkmust": false},//累购-已用
277
- //显示屏数 --实际剩余气量
278
- "剩余金额":{"index":9,"type":"number","checkmust": false},
279
- "气量异常差值":{"index":10,"type":"number","readonly": true},
280
- "金额异常差值":{"index":10,"type":"number","readonly": true},
281
- "系统余额":{"index":10,"type":"number","readonly": true},
282
- "表封号":{"index":11,"type":"string","readonly": true},
283
- "燃气表照片":{"index":12,"type":"picture","checkmust": false}
284
- }
285
- // 注意,配置项的index必须与上面的固定配置保持'顺序'
286
- },
287
- // "燃气表2":{
288
- // "checkmust":true,
289
- // "index":2,src
290
- // "items":{
291
- // "燃气表照片":{"index":1,"type":"picture"},
292
- // "表品牌":{"index":2,"type":"string","readonly":true},
293
- // "表号":{"index":3,"type":"string","readonly":true},
294
- // "表封号":{"index":4,"type":"number","readonly":true},
295
- // "表型号":{"index":5,"type":"string","readonly":true},
296
- // "位置":{"index":6,"type":"string","readonly":true},
297
- // "表底数":{"index":7,"type":"number","readonly":true},
298
- // "累购气量":{"index":8,"type":"number","readonly":true},
299
- // "累购金额":{"index":8,"type":"number","readonly":true}
300
- // }
301
- // }
302
- },
303
- // 维修项
304
- isneedDate:'',
305
- days: this.$appdata.getParam('截止天数'),
306
- routeShow:true,
307
- number:0,
308
- shupingshow:false,
309
- pipeline: {},
310
- details: [],
311
- ids: '',
312
- savevalid: {
313
- uservalid: false,
314
- doorvalid: true,
315
- changetable: false
316
- },
317
- doordetails: {},
318
- devicedetails: {},
319
- cookdetails: {},
320
- componentName: 'safecheck-userinfo',
321
- header:'客户信息',
322
- tabs: [
323
- // 参数全部设置成空,在ready时,等model处理好了,再添加
324
- {
325
- header: '客户信息',complete:'safecheck-userinfo',class: 'repair-info-class', props: null
326
- },
327
- {
328
- header: '拍照签名',complete:'paper-feedback', class: 'outlay-class', props: null
329
- }
330
- ],
331
- faultshow:{
332
- number : 8
333
- } // 控制 故障汇总 在 菜单里显示与否,
334
- }
335
- },
336
- components: {
337
- 'meter-reading': MeterReading,
338
- },
339
- computed: {
340
- actionEnabled: {
341
- get() {
342
- return (this.role == 'inspect' && (this.item.f_last_check_state == '到访不遇' || this.item.f_last_check_state == '拒检' || this.item.f_approved == '不通过' )) || (this.role == 'inspect' && this.item.f_state !='已检' && this.item.f_complete !='已完成' && this.item.f_complete !='已传' )
343
- }
344
- }
345
- },
346
- methods: {
347
- getDays(val){
348
- console.log(val)
349
- this.days = this.$appdata.getParam(val+'截止天数')
350
- this.selectData.day = this.$appdata.getSingleValue(val+'默认截止天数') || 1
351
- },
352
- daychange(val) {
353
- this.selectData.day = val
354
- if (val == '其他') {
355
- this.flag = false
356
- } else {
357
- if(val){
358
- this.flag = true
359
- this.selectData.f_finish_date = this.getSecondDay(val)
360
- }else {
361
- this.selectData.f_finish_date = this.getSecondDay(1)
362
- }
363
-
364
- }
365
- },
366
- getSecondDay(val){
367
- let t = new Date();
368
- let t1 = t.getTime()
369
- val = val * 1000
370
- t.setTime(t1 + val * 60 * 60 * 24);
371
- let Y = t.getFullYear() + '-'
372
- let M = (t.getMonth() + 1 < 10 ? '0' + (t.getMonth() + 1) : t.getMonth() + 1) + '-'
373
- let D = (t.getDate() < 10 ? '0' + t.getDate() : t.getDate()) + ' '
374
- let h = (t.getHours() < 10 ? '0' + t.getHours() : t.getHours()) + ':'
375
- let m = (t.getMinutes() < 10 ? '0' + t.getMinutes() : t.getMinutes()) + ':'
376
- let s = t.getSeconds() < 10 ? '0' + t.getSeconds() : t.getSeconds()
377
- return Y + M + D + h + m + s
378
- },
379
- showmod(){
380
- // this.saveNoclick()
381
- let errString = this.errorVerify()
382
- if (errString) {
383
- console.log(errString)
384
- console.log('Vue.android',Vue.android)
385
- console.log('this.isUpload',this.isUpload)
386
- if (Vue.android){
387
- this.$showMessage(errString)
388
- }
389
- return
390
- }
391
- //清空转维修列表重新进行数据组织
392
- this.repairDefect = {
393
- result: '正常',
394
- data: []
395
- }
396
- this.data.f_complete = '已完成'
397
- this.$set('data.f_offsite_time', Util.toStandardTimeString())
398
- this.assemblyCodata()
399
- if(this.repairDefect.result=='正常'){
400
- this.$showMessage("未发现有选择需要转维修的隐患,请检查填写的数据。如需转维修请在处理方式中选择 '转维修' !")
401
- return
402
- }
403
- console.log("准备保存!")
404
- this.disableTimer()
405
- this.getEmp()
406
- this.showModal2=true
407
- },
408
- cancel1(){
409
- this.showModal2=false
410
- this.selectData={
411
- dispatchType:'派发给维修员',
412
- f_repairman:'',
413
- f_remarks:'',
414
- f_repairtype:''
415
- }
416
- },
417
- getSiteRes(obj) {
418
- console.log('siteRes ---> ')
419
- console.log(obj)
420
- if(obj.resids[0]){
421
- this.selectData.f_meetunit = obj.res.join('.')
422
- this.selectData.f_reciever = obj.resids.join('.')
423
- this.selectData.f_outlets = obj.res[obj.res.length - 1]
424
- }else {
425
- this.selectData.f_meetunit = ''
426
- this.selectData.f_reciever = ''
427
- this.selectData.f_outlets = ''
428
- }
429
- },
430
- rectification(){
431
- if(this.selectData.dispatchType){
432
- if(this.selectData.dispatchType=='派发给站点'){
433
- if(!this.selectData.f_reciever){
434
- this.$showMessage('请选择部门!')
435
- return
436
- }
437
- }else{
438
- if(!this.selectData.f_repairman){
439
- this.$showMessage('请选择维修员!')
440
- return
441
- }
442
- }
443
- }else {
444
- this.$showMessage('请选择派发类型!')
445
- return
446
- }
447
- if(!this.selectData.f_repairtype){
448
- this.$showMessage('请选择报修类型!')
449
- return
450
- }
451
- //关闭录音
452
- this.closely(false) // 保存本地,不删除录音文件暂停录音
453
- let act={}
454
- let toRepair=''
455
- if(this.selectData.dispatchType=='派发给站点'){
456
- act={f_meetunit:this.selectData.f_meetunit,f_reciever:this.selectData.f_reciever,f_service_acitivity_type:'派单'}
457
- toRepair=null
458
- }else{
459
- console.log('派发给维修员---------'+this.selectData.f_repairman)
460
- act={f_meetunit:'',f_reciever:this.selectData.f_repairman,f_service_acitivity_type:'派单'}
461
- toRepair='一级派单'
462
- }
463
- let repData={
464
- toRepair:toRepair,
465
- activity:act,
466
- deps:Vue.user.deps,
467
- depids:Vue.user.depids,
468
- f_remarks:this.selectData.f_remarks,
469
- f_repairtype:this.selectData.f_repairtype,
470
- f_finish_date:this.selectData.f_finish_date,
471
- dispatchType: this.selectData.dispatchType,
472
- f_attendant: Vue.user.name,
473
- loginUser:{name:Vue.user.name,ename:Vue.user.id,id:Vue.user.id},
474
- }
475
- this.rowCodata.istoRepair='转维修'
476
- this.rowCodata.repData=repData
477
- console.log("当前组装好的转维修数据--"+JSON.stringify(repData))
478
- this.onlySave = false
479
- this.save()
480
- },
481
- // 获取维修员
482
- getEmp() {
483
- this.repairers=[]
484
- let per = {source: 'this.getRights().where(row.getType()==$user$).where(row.getAttributes().get($rolestr$).indexOf($维修员$) != -1))', userid: `${Vue.user.id}`}
485
- let http = new HttpResetClass()
486
- http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/search`, {data: per}, {resolveMsg: null, rejectMsg: null}).then((res) => {
487
- res.data.forEach((user)=>{
488
- this.repairers.push({label:user.name, value: user.name})
489
- })
490
- })
491
- },
492
- closely(isdelete){
493
- try {
494
- var startOrStopAudioClipStr;
495
- if (isdelete===true) {
496
- //tag
497
- startOrStopAudioClipStr= HostApp.startOrStopAudioClip("----",'停止并删除录音') //停止并删除录音
498
- }else {
499
- //tag
500
- startOrStopAudioClipStr= HostApp.startOrStopAudioClip("----",'停止录音') //停止录音
501
- }
502
- if (startOrStopAudioClipStr.code == 200) {
503
- //tag
504
- return true;
505
- }else {
506
- return false;
507
- }
508
- } catch (e) {
509
- console.error("关闭录音方法异常")
510
- console.error(e)
511
- return false;
512
- }
513
- },
514
- // 录音方法
515
- record() {
516
- //tag
517
- if (this.role != 'inspect') {
518
- if (this.data.f_recording1_path != '') {
519
- window.location = "/rs/file"+this.data.f_recording1_path
520
- }
521
- } else {
522
- //tag
523
- let fileName
524
- if (!this.data.f_recording1_path) {
525
- fileName = Util.guid() + '.amr'
526
- } else {
527
- fileName = Util.getFileName(this.data.f_recording1_path)
528
- }
529
- //HostApp.__this__ = this
530
- /*调用无限制录音模块*/
531
- let startOrStopState = HostApp.startOrStopAudioClip(fileName,"开始录音")
532
- //tag
533
- if (startOrStopState.code == 200) {
534
- this.data.f_recording1_path = "file:///storage/emulated/0/safecheck/" + fileName
535
- //tag
536
- return true;
537
- }else {
538
- return false;
539
- }
540
- }
541
- },
542
- saveNoclick() {
543
- // 禁用点击事件
544
- $("#savebut").addClass("noclickbut");
545
- //tag
546
-
547
- // 5秒后启用点击事件
548
- setTimeout(function(){
549
- $("#savebut").removeClass("noclickbut");
550
- },5000);
551
- },
552
- timeSet(val){
553
- if (!val){
554
- return
555
- }
556
- let time =new Date(val).getTime()
557
- let time2=new Date().getTime()
558
- if (time2>time) {
559
- return true
560
- }
561
- },
562
- imgback(val,isheader){
563
- if(val && this.routeShow && isheader){
564
- return require('../../../assets/xiangxia1.png')
565
- }else{
566
- return require('../../../assets/xiangyou1.png')
567
- }
568
- },
569
- changediv(val){
570
- return val
571
- },
572
- // 选择tab
573
- tabSelect (item,number) {
574
- this.header = item.header
575
- // 处理关闭/显示 内容
576
- if(this.number == number && !this.routeShow ){
577
- this.routeShow = true
578
- }else if(this.number == number && this.routeShow){
579
- this.routeShow = false
580
- }else if(this.number != item.complete){
581
- this.routeShow = true
582
- }
583
- this.number = number
584
- this.componentName = item.complete
585
- if(item.complete == 'safecheck-devices'){
586
- if(item.header != '燃气表' && this.data['device'+item.number].length == 0){
587
- this.data['device' + item.number].push({})
588
- }
589
- let idx=this.data['device' + item.number].length - 1
590
- let itemprops = {
591
- config:this.config,
592
- device:this.devices[item.number-1],
593
- idx:idx,
594
- role:'inspect'
595
- }
596
- if(this.routeShow){
597
- this.$goto(item.complete, itemprops, 'repair')
598
- }
599
- }else if (item.complete == 'meter-reading'){
600
- if(this.routeShow){
601
- this.$goto(item.complete, {service:this.data}, 'repair')
602
- }
603
- }else{
604
- if(this.routeShow){
605
- this.$goto(item.complete, {userinfo:this.data}, 'repair')
606
- }
607
- }
608
- this.shupingshow = true
609
- },
610
- // 给组件添加参数
611
- getImgPath() {
612
- for (var i = 0; i < this.model.serviceacitivity[0].imgs.length; i++) {
613
- this.ids += this.model.serviceacitivity[0].imgs[i].imgid + ','
614
- }
615
- this.ids = this.ids.substring(0, this.ids.length - 1)
616
- if(this.ids){
617
- this.getImgGen();
618
- }
619
- },
620
- getImgGen(){
621
- let http = new HttpResetClass()
622
- http.load('POST','api/af-safecheck/sql/safe_singleTable_OrderBy', {data: {
623
- items: '*',
624
- tablename: 't_files',
625
- condition: `id in (${this.ids})`,
626
- orderitem: 'id'
627
- }}, {resolveMsg: null, rejectMsg: null}).then((res) => {
628
- for (let i = 0; i < res.data.length; i++) {
629
- for (let j = 0; j < this.model.serviceacitivity[0].imgs.length; j++) {
630
- if (res.data[i].id.toString() === this.model.serviceacitivity[0].imgs[j].imgid) {
631
- this.model.serviceacitivity[0].imgs[j] = Object.assign({}, res.data[i], this.model.serviceacitivity[0].imgs[j])
632
- }
633
- }
634
-
635
- }
636
- })
637
- },
638
-
639
- sortDetails(){
640
- for (let i = 0; i < this.details.length; i++) {
641
- if (this.details[i].details.length) {
642
- for (let j = 0; j < this.details[i].details.length; j++) {
643
- if (this.details[i].details[j].f_type === 'a') {
644
- this.doordetails = {details: this.details[i].details}
645
- break
646
- }
647
- if (this.details[i].details[j].f_type === 'b') {
648
- this.devicedetails = {details: this.details[i].details}
649
- break
650
- }
651
- if (this.details[i].details[j].f_type === 'c') {
652
- this.cookdetails = {details: this.details[i].details}
653
- break
654
- }
655
- }
656
- }
657
- }
658
- },
659
- // 复制数据
660
- back () {
661
- let _this = this
662
- if(this.issee){
663
- _this.$back()
664
- return
665
- }
666
- this.$showMessage('所填写内容将不可恢复!', ['confirm', 'cancel']).then((res) => {
667
- if (res === 'confirm') {
668
- this.closely()
669
- _this.$back()
670
- }
671
- })
672
- },
673
- confirm(){
674
- this.$dispatch('confirm')
675
- },
676
- tick() {
677
- this.timer = null
678
- this.data.f_offsite_time = Util.toStandardTimeString()
679
- this.timer = window.setTimeout(this.tick, 1000)
680
- },
681
- getRepairState() {
682
- let repaired = true
683
- this.data.f_defects.forEach((defect) => {
684
- repaired = repaired & (defect.f_ratification == '已处理')
685
- })
686
- return repaired
687
- },
688
- verifyRepairDefects() {
689
- this.data.f_repair_date = Util.toStandardTimeString()
690
- this.data.f_repaired = this.getRepairState() ? '已修' : '在修'
691
- },
692
- errorVerify() {
693
- let hasError = this.verifyState()
694
- if(hasError)
695
- return hasError
696
-
697
- if(this.data.f_entry_status != '入户' || this.data.f_usegas == '未用气')
698
- return null
699
- hasError = this.verifyUser()
700
- if(hasError)
701
- return hasError
702
- hasError = this.verifyDevices()
703
- if(hasError)
704
- return hasError
705
- hasError = this.verifyFeedback()
706
- if(hasError)
707
- return hasError
708
- },
709
- verifyState() {
710
- if(Vue.android && this.data.f_usegas == '未用气' && (this.data.f_nongasuser_path == Vue.nopic || this.data.f_nongasuser_path == ''))
711
- return '未使用天然气则必须拍照'
712
- if(Vue.android && this.data.f_entry_status == '到访不遇' && this.notencountered && (this.data.f_noanswer_path == Vue.nopic || this.data.f_noanswer_path == ''))
713
- return '到访不遇必须拍照'
714
- if(Vue.android && this.data.f_entry_status == '拒检' && this.refuseinspection && (this.data.f_rejectcheck_path == Vue.nopic || this.data.f_rejectcheck_path == ''))
715
- return '拒检必须拍照'
716
- },
717
- verifyUser() {
718
- let prefix = '用户基本信息:'
719
- if(Util.required(this.data.f_user_name))
720
- return prefix + '用户名必须输入'
721
- if (!this.data.f_user_phone){
722
- return '请输入正确的电话号码'
723
- }
724
- if(!(/^\d{11}$/.test(this.data.f_user_phone.trim()))) {
725
- return '请输入正确的电话号码'
726
- }
727
- // if(Util.required(this.data.f_residential_area))
728
- // return prefix + '小区名称必须输入'
729
- // if(Util.required(this.data.f_address))
730
- // return prefix + '地址必须输入'
731
- },
732
- verifyDevices() {
733
- for (let dev in this.config) {
734
- if (this.config[dev].checkmust == true) {
735
- let error = true
736
- for(let device in this.data) {
737
- if (device.startsWith("device")) {
738
- for (let item in this.data[device]) {
739
- if (this.data[device].length != 0 && this.data[device][item].f_device_type == dev) {
740
- error = false
741
- }
742
- }
743
- }
744
- }
745
- if (error) {
746
- return "请检查" + dev
747
- }
748
- }
749
- }
750
-
751
- for (let dev in this.config) {
752
- for(let device in this.data) {
753
- if (device.startsWith("device")) {
754
- for (let item in this.data[device]) {
755
- //检查每一条安检结果
756
- if (this.data[device].length != 0 && this.data[device][item].f_device_type == dev) {
757
- for (let i in this.data[device][item].f_items) {
758
- for (let it in this.config[dev].items) {
759
- if (it == this.data[device][item].f_items[i].f_item_name) {
760
- let check=false
761
- if (!this.data[device][item].f_items[i].f_item_value){
762
- check=true
763
- }else if (Array.isArray(this.data[device][item].f_items[i].f_item_value)){
764
- if (this.data[device][item].f_items[i].f_item_value.length==0){
765
- check=true
766
- }
767
- }
768
-
769
- if(this.config[dev].items[it].type=='picture' && this.config[dev].items[it].checkmust == true && !this.data[device][item].f_items[i].f_path){
770
- return dev + (this.data[device].indexOf(this.data[device][item]) + 1) + this.data[device][item].f_items[i].f_item_name + "未检查"
771
- }
772
- if (this.config[dev].items[it].type !='picture' && this.config[dev].items[it].checkmust == true && check) {
773
- return dev + (this.data[device].indexOf(this.data[device][item]) + 1) + this.data[device][item].f_items[i].f_item_name + "未检查"
774
- }
775
- }
776
- }
777
- //检查安检下拉结果
778
- if (this.data[device][item].f_items[i].type == 'selector' || this.data[device][item].f_items[i].type == 'radio') {
779
- if (this.data[device][item].f_items[i].f_is_defect == true && this.data[device][item].f_items[i].f_path == Vue.nopic) {
780
- return dev + (this.data[device].indexOf(this.data[device][item]) + 1) + this.data[device][item].f_items[i].f_item_name + this.data[device][item].f_items[i].f_item_value + "选中必须拍照"
781
- }
782
- }
783
- }
784
- }
785
- }
786
- }
787
- }
788
- }
789
- },
790
- verifyFeedback() {
791
- let prefix = '拍照签名:'
792
- if(Vue.android && (!this.data.f_overall_imgs || this.data.f_overall_imgs.length < this.imgsnum) && this.data.f_entry_status == '入户')
793
- return prefix + `必须有${this.imgsnum}安检总体照片`
794
- /*if(Vue.android && (!this.data.f_sign_path || this.data.f_sign_path.length == 0) && this.data.f_entry_status == '入户')
795
- return prefix + '必须有用户签名'*/
796
- if(Vue.android && this.data.f_defect_notified && this.data.f_notified_path == Vue.nopic)
797
- return prefix + '下发安检通知书则必须给通知书拍照'
798
- if(Vue.android && this.data.f_blacklist && this.data.f_blocking_cause=='')
799
- return prefix + '请填写拉黑原因'
800
- if(!this.data.f_client_evaluation && this.data.f_entry_status == '入户')
801
- return prefix + '请选择服务评价'
802
- },
803
- getAllDefect() {
804
- let checkResults = {
805
- result: '正常',
806
- data: []
807
- }
808
- let value = ''
809
- let codata = JSON.parse(JSON.stringify(this.data))
810
- codata.f_devices = []
811
- this.f_devices = []
812
- for (let device in codata) {
813
- let f_device_type
814
- if (device.startsWith("device")) {
815
- let hasOther = ''
816
- let otherValue = null
817
- for (let item in codata[device]) {
818
- if(typeof codata[device][item]=='function'){
819
- continue
820
- }
821
- codata[device][item].f_create_time = Util.toStandardTimeString()
822
- if (codata[device].length > 1) {
823
- let j = Number.parseInt(item) + 1
824
- f_device_type = `${codata[device][item].f_device_type}${j}`
825
- } else {
826
- f_device_type = codata[device][item].f_device_type
827
- }
828
- if(item == 'sum' || item == 'removeEmpty'){
829
- continue
830
- }
831
- for (let i = 0; i < codata[device][item].f_items.length ; i++) {
832
- //tag
833
- if(i == 'sum' || i == 'removeEmpty'){
834
- continue
835
- }
836
- var items = codata[device][item].f_items[i]
837
- items.f_create_time = Util.toStandardTimeString()
838
- items.f_item_lists = []
839
- if (items.type == 'selector') {
840
- items.selected = []
841
- } else if (items.type == 'inputSelector') {
842
- items.selected = ''
843
- }
844
- //遍历配置项 将所选隐患项的配置信息放入保存的数据中
845
- let f_is_defect //是否是隐患
846
- let f_defect_level //是否是隐患
847
- let f_item_name = items.f_item_name
848
- let f_item_value
849
- if (items.type == 'selector' || items.type == 'checkbox' || items.type == 'radio') {
850
- for (let i in items.f_item_value) {
851
- if(typeof items.f_item_value[i]=='function'){
852
- continue
853
- }
854
- let configItems = this.config[codata[device][item].f_device_type].items[f_item_name]
855
- //tag)
856
- for (let k in configItems.options) {
857
- if(typeof configItems.options[k]=='function'){
858
- continue
859
- }
860
- //tag)
861
- if (items.f_item_value[i] === configItems.options[k].data) {
862
-
863
- f_is_defect = configItems.options[k].isdefect
864
- f_item_value = items.f_item_value[i]
865
- f_defect_level = configItems.options[k].level
866
- if (f_is_defect) {
867
- if (checkResults.result !== '有隐患') {
868
- checkResults.result = '有隐患'
869
- }
870
- console.log('items'+items)
871
- if(items.f_deal_dispose=='报修'){
872
- console.log("检测到需要转维修++++++++++++")
873
- this.repairDefect.result='未处理'
874
- this.repairDefect.data.push(`${f_item_name} : ${f_item_value}`)
875
- }
876
- if (!this.checkResult.hasOwnProperty(f_device_type+'-'+f_item_name)) {
877
- this.checkResult[f_device_type+'-'+f_item_name] = []
878
- }
879
- this.checkResult[f_device_type+'-'+f_item_name].push(f_item_value)
880
-
881
- }
882
-
883
- let items_list = {
884
- f_is_defect: f_is_defect,
885
- f_item_value: f_item_value,
886
- f_defect_level: f_defect_level,
887
- f_is_eliminate: null,
888
- f_create_time: Util.toStandardTimeString()
889
- }
890
- if (!items.f_item_lists) {
891
- items.f_item_lists = []
892
- if (JSON.stringify(items_list) !== '{}') {
893
- items.f_item_lists.push(items_list)
894
- }
895
- } else {
896
- if (JSON.stringify(items_list) !== '{}') {
897
- items.f_item_lists.push(items_list)
898
- }
899
- }
900
- }
901
- }
902
- }
903
- } else {
904
- let configItems = this.config[codata[device][item].f_device_type].items[items.f_item_name]
905
- f_is_defect = items.f_is_defect
906
- f_defect_level = items.level
907
- f_item_value = items.f_item_value
908
- let items_list = {
909
- f_is_defect: f_is_defect,
910
- f_item_value: f_item_value,
911
- f_defect_level: f_defect_level,
912
- f_create_time: Util.toStandardTimeString()
913
- }
914
- if (f_is_defect && f_item_value) {
915
- items.f_is_defect = true
916
- if (checkResults.result !== '有隐患') {
917
- checkResults.result = '有隐患'
918
- }
919
- if (!this.checkResult.hasOwnProperty(items.f_item_name)) {
920
- this.checkResult[items.f_item_name] = []
921
- }
922
-
923
- this.checkResult[items.f_item_name].push(f_item_value)
924
-
925
- }
926
- if (!items.f_item_lists) {
927
- items.f_item_lists = []
928
- if (JSON.stringify(items_list) != '{}') {
929
- items.f_item_lists.push(items_list)
930
- }
931
- } else {
932
- if (JSON.stringify(items_list) != '{}') {
933
- items.f_item_lists.push(items_list)
934
- }
935
- }
936
- }
937
- if (hasOther !== '' && otherValue !== null) {
938
- this.checkResult[hasOther].push(otherValue)
939
- hasOther = ''
940
- otherValue = null
941
- }
942
- items.f_item_value = ''
943
- }
944
- this.f_devices.push(codata[device][item])
945
- }
946
- }
947
- }
948
- if (this.checkResult) {
949
- for (let key in this.checkResult) {
950
- if(typeof this.checkResult[key]=='function'){
951
- continue
952
- }
953
- // 上次安检结果数据组织
954
- let temp = {}
955
- temp[key] = this.checkResult[key].join(',')
956
- checkResults.data.push(temp)
957
- }
958
- this.checkResult = {}
959
- }
960
- if (checkResults.data.length > 0) {
961
- let msg = ''
962
- for (let a = 0; a < checkResults.data.length; a++) {
963
- for (let datumKey in checkResults.data[a]) {
964
- msg += datumKey + ':' + checkResults.data[a][datumKey] + ';'
965
- }
966
- }
967
- this.data.f_defect_text = msg
968
- codata.f_defect_text = msg
969
- }
970
- codata.f_defect_content = JSON.stringify(checkResults)
971
- this.data.f_defect_content = JSON.stringify(checkResults)
972
- return codata
973
- },
974
- uploadCheckPaper(){
975
- this.saveNoclick()
976
- this.closely(false) // 保存本地,不删除录音文件停止录音
977
- let errString = this.errorVerify()
978
- if (errString) {
979
- if (Vue.android){
980
- this.$showMessage(errString)
981
- }
982
- return
983
- } else {
984
- this.$set('data.f_offsite_time', Util.toStandardTimeString())
985
- this.$set('data.f_upload_time', Util.toStandardTimeString())
986
- this.$set('data.f_upload_date', Util.toStandardTimeString())
987
- this.data.f_complete = '已完成'
988
- this.disableTimer()
989
- }
990
- this.onlySave = false
991
- this.assemblyCodata()
992
- if (this.repairDefect.result != '正常') {
993
- return this.$showMessage('有隐患的处理方式为转维修,请点击转维修')
994
- }
995
- this.save()
996
-
997
- },
998
- //将数据组装提出
999
- assemblyCodata(){
1000
- let codata = this.getAllDefect()
1001
- console.log(`codata类型 开始组装codeta数据-->${typeof codata}`)
1002
- console.log(`codata内容-->${JSON.stringify(codata)}`)
1003
- for (let key in codata) {
1004
- if (key.startsWith("device")) {
1005
- console.log('this.data.' + key + JSON.stringify(codata[key]))
1006
- codata[key] = []
1007
- }
1008
- }
1009
- codata.f_devices = this.f_devices
1010
- this.rowCodata=codata
1011
- },
1012
- save(type) {
1013
- if (type == 'temp' || type == 'finish') {
1014
- this.assemblyCodata()
1015
- }
1016
- //禁用事件
1017
- this.saveNoclick()
1018
- if(type == 'temp'){
1019
- this.data.f_complete = '未完成'
1020
- this.rowCodata.f_complete = '未完成'
1021
- // 关闭录音方法
1022
- this.closely(true) //临时保存,删除录音文件并暂停录音
1023
- this.disableTimer()
1024
- }else {
1025
- // 关闭录音方法
1026
- this.closely(false) // 保存本地,不删除录音文件暂停录音
1027
- let errString = this.errorVerify()
1028
- if (errString) {
1029
- if (Vue.android){
1030
- this.$showMessage(errString)
1031
- }
1032
- return
1033
- } else {
1034
- this.data.f_complete = '已完成'
1035
- this.rowCodata.f_complete = '已完成'
1036
- this.$set('data.f_offsite_time', Util.toStandardTimeString())
1037
- this.$set('rowCodata.f_offsite_time', Util.toStandardTimeString())
1038
- this.disableTimer()
1039
- }
1040
- }
1041
- if(this.data.f_blacklist!='是'){
1042
- delete this.data.f_blocking_cause
1043
- }
1044
- if (this.data.f_entry_status == '入户') {
1045
- this.data.f_rejectchecks_path = []
1046
- this.data.f_rejectcheck_path = null
1047
- this.data.f_rejectcheck1_path = null
1048
- this.data.f_rejectcheck2_path = null
1049
- this.data.f_noanswers_path=[]
1050
- this.data.f_noanswer_path = null
1051
- this.data.f_noanswer1_path = null
1052
- this.data.f_noanswer2_path = null
1053
- }else if (this.data.f_entry_status == '到访不遇') {
1054
- this.data.f_rejectchecks_path = []
1055
- this.data.f_rejectcheck_path = null
1056
- this.data.f_rejectcheck1_path = null
1057
- this.data.f_rejectcheck2_path = null
1058
- }else if (this.data.f_entry_status == '拒检') {
1059
- this.data.f_noanswers_path=[]
1060
- this.data.f_noanswer_path = null
1061
- this.data.f_noanswer1_path = null
1062
- this.data.f_noanswer2_path = null
1063
- }
1064
- let codata = this.rowCodata
1065
- for (let key in codata) {
1066
- if (key.startsWith("device")) {
1067
- codata[key] = []
1068
- }
1069
- }
1070
- codata.f_complete = this.data.f_complete
1071
- if (Vue.android) {
1072
- let value = this.$androidUtil.path({
1073
- alias: 'getUserinfomation',
1074
- data: {condition: "f_userinfoid = '" + this.item.f_userinfoid + "' and f_no_checkplan in ('无计划安检','复检')"}
1075
- })
1076
- if ((this.item.f_no_checkplan == '无计划安检' || this.item.f_no_checkplan == '复检') && this.item.f_no_checkplan != '打回') {
1077
- codata.f_devices = this.f_devices
1078
- if (this.rowCodata && this.rowCodata.istoRepair=='转维修') {
1079
- this.rowCodata = Object.assign({},this.rowCodata,codata)
1080
- } else {
1081
- this.rowCodata = codata
1082
- }
1083
- let param = {
1084
- f_check_item_id: this.data.f_check_item_id,
1085
- f_checker_id: this.data.f_checker_id,
1086
- f_upload_state: '未传',
1087
- row: this.rowCodata
1088
- }
1089
- let paramStr = JSON.stringify(param)
1090
- // 多长截断一次
1091
- let subLength = 800
1092
- for (let i = 0; i < paramStr.length; i += subLength) {
1093
- HostApp.param_cache(paramStr.slice(i, i + subLength))
1094
- }
1095
- HostApp.__this__ = this
1096
- HostApp.syncLogic({
1097
- // logic别名,key必须为logic
1098
- 'logic': 'SafeSaveNoPaper',
1099
- // 回调执行方法名,key必须为callback
1100
- 'callback': 'javascript:HostApp.__this__.saveCallBack()',
1101
- // 固定key,代表是否将logic执行结果作为参数传入回调方法,1代表true,0代表false,
1102
- // 执行回调方法传入key为backresult
1103
- // 如需额外拼接参数,写在logic返回值的params,例如xxlogic返回:{"params": "success"}
1104
- 'backresult': 1
1105
- })
1106
- } else {
1107
- codata.f_devices = this.f_devices
1108
- if (this.rowCodata && this.rowCodata.istoRepair=='转维修') {
1109
- this.rowCodata = Object.assign({},this.rowCodata,codata)
1110
- } else {
1111
- this.rowCodata = codata
1112
- }
1113
- let param = {
1114
- f_check_item_id: this.data.f_check_item_id,
1115
- f_checker_id: this.data.f_checker_id,
1116
- row: this.rowCodata
1117
- }
1118
- let paramStr = JSON.stringify(param)
1119
- // 多长截断一次
1120
- let subLength = 800
1121
- for (let i = 0; i < paramStr.length; i += subLength) {
1122
- HostApp.param_cache(paramStr.slice(i, i + subLength))
1123
- }
1124
- HostApp.__this__ = this
1125
- HostApp.syncLogic({
1126
- // logic别名,key必须为logic
1127
- 'logic': '保存安检单信息',
1128
- // 回调执行方法名,key必须为callback
1129
- 'callback': 'javascript:HostApp.__this__.saveCallBack()',
1130
- // 固定key,代表是否将logic执行结果作为参数传入回调方法,1代表true,0代表false,
1131
- // 执行回调方法传入key为backresult
1132
- // 如需额外拼接参数,写在logic返回值的params,例如xxlogic返回:{"params": "success"}
1133
- 'backresult': 1
1134
- })
1135
- }
1136
-
1137
- } else {
1138
- let value = this.$androidUtil.path({
1139
- alias: 'getUserinfomation',
1140
- data: {condition: "f_userinfoid = '" + this.item.f_userinfoid + "' and f_no_checkplan in ('无计划安检','复检')"}
1141
- })
1142
- if (this.rowCodata && this.rowCodata.istoRepair=='转维修') {
1143
- this.rowCodata = Object.assign({},this.rowCodata,codata)
1144
- } else {
1145
- this.rowCodata = codata
1146
- }
1147
- if ((this.item.f_no_checkplan == '无计划安检' || this.item.f_no_checkplan == '复检') && value.data.length == 0 && this.item.f_no_checkplan != '打回') {
1148
- this.$androidUtil.bzLogic('SafeSaveNoPaper', {
1149
- f_check_item_id: this.data.f_check_item_id,
1150
- f_checker_id: this.data.f_checker_id,
1151
- f_upload_state: '未传',
1152
- row: this.rowCodata
1153
- }).then((res) => {
1154
- if (res.data.code == 200) {
1155
- //保存devices
1156
- this.$androidUtil.bzLogic('getPaperInfo', {
1157
- f_check_item_id: this.data.f_check_item_id
1158
- }).then((res) => {
1159
- if (res.data.code == 200) {
1160
- let f_paper_id = res.data.data[0].id
1161
- for (let device of this.f_devices) {
1162
- device.f_paper_id = f_paper_id
1163
- this.$androidUtil.bzLogic('saveDevice', {
1164
- row: device
1165
- }).then((ret) => {
1166
- if (ret.code != 200) {
1167
- //TODO 失败后处理
1168
- this.$showMessage("保存失败!")
1169
- return false
1170
- }
1171
- })
1172
- }
1173
- }
1174
- })
1175
- this.$showMessage('保存成功!')
1176
- return true
1177
- } else {
1178
- this.$showMessage("保存失败!")
1179
- return false
1180
- }
1181
- })
1182
- }
1183
- else {
1184
- this.$androidUtil.bzLogic('保存安检单信息', {
1185
- f_check_item_id: this.data.f_check_item_id,
1186
- f_checker_id: this.data.f_checker_id,
1187
- row: this.rowCodata
1188
- }).then((res) => {
1189
- if (res.data.code == 200) {
1190
- //保存devices
1191
- this.$androidUtil.bzLogic('getPaperInfo', {
1192
- f_check_item_id: this.data.f_check_item_id
1193
- }).then((res) => {
1194
- if (res.data.code == 200) {
1195
-
1196
- let f_paper_id = res.data.data[0].id
1197
- for (let device of this.f_devices) {
1198
- device.f_paper_id = f_paper_id
1199
- this.$androidUtil.bzLogic('saveDevice', {
1200
- row: device
1201
- }).then((ret) => {
1202
- if (ret.code != 200) {
1203
- //TODO 失败后处理
1204
- this.$showMessage("保存失败!")
1205
- return false
1206
- }
1207
- })
1208
- }
1209
- }
1210
- })
1211
- this.$showMessage('保存成功!')
1212
- return true
1213
- } else {
1214
- this.$showMessage("保存失败!")
1215
- return false
1216
- }
1217
- })
1218
- }
1219
- }
1220
- },
1221
- runSyncLogic(logic,callback,backresult){
1222
- HostApp.runSyncLogic({
1223
- // logic别名,key必须为logic
1224
- 'logic': logic,
1225
- // 回调执行方法名,key必须为callback
1226
- 'callback': callback,
1227
- // 固定key,代表是否将logic执行结果作为参数传入回调方法,1代表true,0代表false,
1228
- // 执行回调方法传入key为backresult
1229
- // 如需额外拼接参数,写在logic返回值的params,例如xxlogic返回:{"params": "success"}
1230
- 'backresult':backresult
1231
- })
1232
- },
1233
- logicWithHint(logic,data,callback,backresult){
1234
- HostApp.logicWithHint({
1235
- // logic别名,key必须为logic
1236
- 'logic': logic,
1237
- // 回调执行方法名,key必须为callback
1238
- 'callback': callback,
1239
- // logic执行需要的业务参数
1240
- 'data': data,
1241
- // 固定key,代表是否将logic执行结果作为参数传入回调方法,1代表true,0代表false,
1242
- // 执行回调方法传入key为backresult
1243
- // 如需额外拼接参数,写在logic返回值的params,例如xxlogic返回:{"params": "success"}
1244
- 'backresult':backresult
1245
- })
1246
- },
1247
- saveCallBack(jo){
1248
- if(jo.state == 'ok'){
1249
- let res = JSON.parse(jo.result)
1250
- if(res.code == 200){
1251
- if(!this.onlySave){
1252
- let codata = this.getAllDefect()
1253
- //获取微信推送内容
1254
- // let WxResult = this.getWeixin(codata)
1255
- let haslivedispose = this.$androidUtil.bzLogic('getLiveDispose', {
1256
- f_check_item_id: this.data.f_check_item_id
1257
- })
1258
- //如果是转维修上传,则不做校验,上传完成后自动转维修
1259
- if(!this.isToRepair){
1260
- if(haslivedispose.data.length > 0 && (this.livedispose == 'true' || this.livedispose == true)){
1261
- if(!this.isSafeCheckToRepair){
1262
-
1263
- }
1264
- }
1265
- }
1266
- for (let key in codata){
1267
- if(key.startsWith("device")){
1268
- codata[key] = []
1269
- }
1270
- }
1271
- codata.f_devices = this.f_devices
1272
- if (this.rowCodata && this.rowCodata.istoRepair=='转维修') {
1273
- this.rowCodata = Object.assign({},this.rowCodata,codata)
1274
- } else {
1275
- this.rowCodata = codata
1276
- }
1277
- let param = {
1278
- f_check_item_id: this.data.f_check_item_id,
1279
- f_checker_id: this.data.f_checker_id,
1280
- row: this.rowCodata
1281
- }
1282
- let paramStr = JSON.stringify(param)
1283
- // 多长截断一次
1284
- let subLength = 800
1285
- for (let i = 0; i < paramStr.length; i += subLength) {
1286
- HostApp.param_cache(paramStr.slice(i, i + subLength))
1287
- }
1288
- HostApp.__this__ = this
1289
- HostApp.syncLogic({
1290
- // logic别名,key必须为logic
1291
- 'logic': '上传安检信息',
1292
- // 回调执行方法名,key必须为callback
1293
- 'callback': 'javascript:HostApp.__this__.uploadCallBack()',
1294
- // 固定key,代表是否将logic执行结果作为参数传入回调方法,1代表true,0代表false,
1295
- // 执行回调方法传入key为backresult
1296
- // 如需额外拼接参数,写在logic返回值的params,例如xxlogic返回:{"params": "success"}
1297
- 'backresult': 1
1298
- })
1299
- }else{
1300
- this.$showMessage('保存成功!')
1301
- if(this.clickBack){
1302
- this.isStrat = false
1303
- this.$dispatch('confirm')
1304
- }
1305
- }
1306
- }else{
1307
- this.$showMessage('保存失败!')
1308
- return
1309
- }
1310
- }else{
1311
- this.$showMessage('服务器内部错误,保存失败!')
1312
- return
1313
- }
1314
- },
1315
- uploadCallBack(jo){
1316
- //获取微信推送路径
1317
- let url = ""
1318
- if(Vue.config.safecheck != undefined) {
1319
- if (Vue.config.safecheck.ApproveConfig != undefined) {
1320
- if (Vue.config.safecheck.ApproveConfig.weixinurl != undefined) {
1321
- url = Vue.config.safecheck.ApproveConfig.weixinurl
1322
- }
1323
- }
1324
- }
1325
- if(jo.state == 'ok'){
1326
- let res = JSON.parse(jo.result)
1327
- if(res.code == 200){
1328
- this.$set('data.f_paper_id', res.id)
1329
- this.isStrat=false
1330
- if(url != ""){
1331
- this.$resetpost(`${url}`,{data:WxResult})
1332
- }
1333
- // 预约安检回更预约安检单
1334
- if(this.data.isupdateplanitem == 'true' && this.data.f_SafeToRepair_id){
1335
- this.$resetpost(`${this.$androidUtil.getProxyUrl()}/api/af-safecheck/logic/ReturnSafeService`, {data:{
1336
- f_paper_id:this.data.f_paper_id,
1337
- f_service_id:this.data.f_SafeToRepair_id
1338
- }
1339
- }).then((ret) => {
1340
- if(ret.data && ret.data.code == 200){
1341
- console.log('预约安检回更成功')
1342
- }
1343
- })
1344
- }
1345
- if(this.isToRepair){
1346
- for (let device in this.data){
1347
- if(device.startsWith("device")){
1348
- this.data[device] = []
1349
- if(res.data.length > 0){
1350
- for(let i in res.data[0].f_devices){
1351
- if(this.data[device].length > 0){
1352
- if(this.data[device][0].f_device_type == res.data[0].f_devices[i].f_device_type){
1353
- this.data[device].push(res.data[0].f_devices[i])
1354
- res.data[0].f_devices.splice(i,1)
1355
- }
1356
- }else{
1357
- this.data[device].push(res.data[0].f_devices[i])
1358
- res.data[0].f_devices.splice(i,1)
1359
- }
1360
- }
1361
- }
1362
- }
1363
- }
1364
- this.todo()
1365
- }else{
1366
- this.$showMessage('安检上传成功!')
1367
- if (this.data.f_userinfoid){
1368
- let http = new HttpResetClass()
1369
- http.load('POST', `${this.$androidUtil.getProxyUrl()}/af-telephone/rs/sql/tel_singleTable_OrderBy`, {
1370
- data: {
1371
- items: 'count(0) as num',
1372
- tablename: 't_userfiles',
1373
- condition: `f_userinfo_id = '${this.data.f_userinfoid}' and f_meter_classify != '物联网表'`,
1374
- orderitem: '1'
1375
- }
1376
- }, {resolveMsg: null, rejectMsg: null}).then((response) => {
1377
- if (response.data[0].num > 0 ){
1378
- let _this = this
1379
- this.$showMessage(`是否前往抄表`, ['confirm', 'cancel']).then((res) => {
1380
- if (res === 'confirm') {
1381
-
1382
- let http = new HttpResetClass()
1383
- http.load('POST', `${this.$androidUtil.getProxyUrl()}/af-readmeter/sql/PcHandInfo`, {data:{
1384
- sort: `asc`,
1385
- condition:`f_userinfo_id = '${_this.data.f_userinfoid}'`
1386
- }
1387
- }, {resolveMsg: null, rejectMsg: null}).then((res) => {
1388
- let param = {}
1389
- param = res.data[0]
1390
- param.f_new_tablebase = _this.data.f_new_tablebase
1391
- param.tabname="在线抄表"
1392
- var pardate = {
1393
- _this:this,
1394
- tittle:'抄表单信息',
1395
- safe:false
1396
- }
1397
- this.$dispatch('gotoson',pardate)
1398
- this.$goto('phone-hand-edit', {data:param,source:'抄表',type:'save'}, 'self', function (){
1399
- _this.$dispatch('confirm')
1400
- }
1401
- )
1402
- })
1403
- }else {
1404
- this.$dispatch('tijiao')
1405
- }
1406
- })
1407
- }
1408
- })
1409
- }
1410
- }
1411
- }else if(res.code == 309){
1412
- this.$showMessage('该安检单已作废!')
1413
- this.$dispatch('confirm')
1414
- }else if(res.code == 710){
1415
- this.$showMessage('上传照片失败,请检查网络是否正常!'+res.msg)
1416
- this.onlySave = true
1417
- return
1418
- }else if(res.code == 711){
1419
- this.$showMessage('该安检单已被管理员调整,请联系管理员!')
1420
- this.onlySave = true
1421
- return
1422
- }else if(res.code == 712){
1423
- this.$showMessage('网络异常,请缓存后重新尝试上传,多次上传失败请联系管理员!')
1424
- this.onlySave = true
1425
- return
1426
- }
1427
- else{
1428
- this.$showMessage('上传失败!')
1429
- }
1430
- }else {
1431
- this.$showMessage('网络异常,上传失败!')
1432
- }
1433
- this.onlySave = true
1434
- },
1435
- safecheckToRepairCallBack(jo){
1436
- //获取微信推送路径
1437
- if(jo.state == 'ok'){
1438
- let res = JSON.parse(jo.result)
1439
- if(res.code == 200){
1440
- if(res.data.code == 200){
1441
- this.$showMessage('上传并转维修成功!')
1442
- }else{
1443
- this.$showMessage('上传并转维修成功,回写安检单失败!')
1444
- }
1445
- this.$dispatch('confirm')
1446
- }else{
1447
- this.$showMessage('上传失败!')
1448
- this.onlySave = true
1449
- }
1450
- }else{
1451
- this.$showMessage('网络异常,上传失败!')
1452
- this.onlySave = true
1453
- }
1454
- },
1455
- todo(){
1456
- let gen = getRepairParam(this)
1457
- co(gen)
1458
- },
1459
- undo(){
1460
- this.showCheckToRepair = !this.showCheckToRepair
1461
- this.model.serviceacitivity[0].f_reciever = ''
1462
- this.model.serviceacitivity[0].f_meetunit = ''
1463
- this.model.f_repairtype = ''
1464
- this.meading = '转站点'
1465
- },
1466
- disableTimer() {
1467
- if(this.timer) {
1468
- window.clearTimeout(this.timer)
1469
- this.timer = null
1470
- }
1471
- },
1472
- loaded(paper) {
1473
- if(!paper.hasOwnProperty('id')) {
1474
- this.$showMessage("该安检单在手机上已经不存在,可能是卸载过程序。可以进入重新安检,或返回安检计划。")
1475
- this.init()
1476
- } else {
1477
- Util.booleanFilter(paper)
1478
- HostApp.__this__.$set('data', paper)
1479
- HostApp.__this__.$goto('safecheck-userinfo', {}, 'paper-router')
1480
- // 如果打回重检则重新计时
1481
- if(HostApp.__this__.role == 'inspect'
1482
- && HostApp.__this__.data.f_approved
1483
- && HostApp.__this__.data.f_approved == '打回') {
1484
- HostApp.__this__.data.f_onsite_time = Util.toStandardTimeString()
1485
- HostApp.__this__.tick()
1486
- }
1487
- }
1488
- HostApp.__callback__ = null
1489
- HostApp.__this__ = null
1490
- },
1491
- S4() {
1492
- return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
1493
- },
1494
- extend(initalObj, finalObj) {
1495
- var obj = finalObj || {};
1496
- for (var i in initalObj) {
1497
- var prop = initalObj[i];
1498
-
1499
- // 避免相互引用对象导致死循环,如initalObj.a = initalObj的情况
1500
- if (prop === obj) {
1501
- continue;
1502
- }
1503
-
1504
- if (typeof prop === 'object') {
1505
- if (obj[i]) {
1506
- this.extend(obj[i], prop)
1507
- } else {
1508
- obj[i] = prop;
1509
- }
1510
- }
1511
- }
1512
- return obj;
1513
- },
1514
- putDevices() {
1515
- this.$set('data.approve', "true")
1516
- this.$set('data.writeback', "false")
1517
- if (Vue.config.safecheck != undefined) {
1518
- if (Vue.config.safecheck.ApproveConfig != undefined) {
1519
- if (Vue.config.safecheck.ApproveConfig.approve != undefined) {
1520
- this.$set('data.approve', Vue.config.safecheck.ApproveConfig.approve)
1521
- }
1522
- if (Vue.config.safecheck.ApproveConfig.writeback != undefined) {
1523
- this.$set('data.writeback', Vue.config.safecheck.ApproveConfig.writeback)
1524
- }
1525
- if (Vue.config.safecheck.ApproveConfig.livedispose != undefined) {
1526
- this.livedispose = Vue.config.safecheck.ApproveConfig.livedispose
1527
- }
1528
- if (Vue.config.safecheck.ApproveConfig.showtorepair) {
1529
- this.show_torepair = Vue.config.safecheck.ApproveConfig.showtorepair
1530
- }
1531
- if (Vue.config.safecheck.ApproveConfig.notencountered != undefined){
1532
- this.notencountered = Vue.config.safecheck.ApproveConfig.notencountered
1533
- }
1534
- if (Vue.config.safecheck.ApproveConfig.refuseinspection != undefined){
1535
- this.refuseinspection = Vue.config.safecheck.ApproveConfig.refuseinspection
1536
- }
1537
- }
1538
- if(this.item.f_user_type == '非民用'){
1539
- // 非民用
1540
- if (Vue.config.safecheck.DevicesSetConfig != undefined){
1541
- if(this.item.f_safecheck_type == undefined || this.item.f_safecheck_type == '' || Vue.config.safecheck.SafecheckType == undefined) {
1542
- this.config = this.extend(this.config, Vue.config.safecheck.DevicesSetConfig)
1543
- }else{
1544
- this.config = this.extend(this.config, Vue.config.safecheck[Vue.config.safecheck.SafecheckType[this.item.f_safecheck_type][this.item.f_user_type]])
1545
- }
1546
- }
1547
-
1548
- }else{
1549
- // 民用户
1550
- if (Vue.config.safecheck.DevicesConfig != undefined){
1551
- if(this.item.f_safecheck_type == undefined || this.item.f_safecheck_type == '' || Vue.config.safecheck.SafecheckType == undefined) {
1552
- this.config = this.extend(this.config, Vue.config.safecheck.DevicesConfig)
1553
- }else{
1554
- this.config = this.extend(this.config, Vue.config.safecheck[Vue.config.safecheck.SafecheckType[this.item.f_safecheck_type][this.item.f_user_type?this.item.f_user_type:'民用']])
1555
- }
1556
- }
1557
- }
1558
-
1559
- }
1560
- // 预留设备项位置
1561
- for (let i in this.config) {
1562
- this.tabs.splice(1,0,null)
1563
- }
1564
- //遍历安检项配置
1565
- for (let i in this.config) {
1566
- //取得安检项索引值
1567
- let n = this.config[i].index
1568
- this.devices[n - 1] = {device: i, n: n, checkmust: this.config[i].checkmust}
1569
- this.$set('data.' + 'device' + n, [])
1570
- this.tabs[n] = {
1571
- header: i,
1572
- complete: 'safecheck-devices',
1573
- class: 'repair-details-class',
1574
- number: n
1575
- }
1576
-
1577
- if(this.config[i].quantity && this.config[i].quantity >0){
1578
- let items = []
1579
- for (let it in this.config[i].items) {
1580
- //赋值下拉选项
1581
- if (this.config[i].items[it].type == 'selector') {
1582
- for (let op in this.config[i].items[it].options) {
1583
- if (this.config[i].items[it].options[op].isdefault == true) {
1584
- items.push({
1585
- f_defect_level: this.config[i].items[it].options[op].level,
1586
- f_is_defect: this.config[i].items[it].options[op].isdefect,
1587
- f_item_name: it,
1588
- f_item_value: this.config[i].items[it].options[op].data,
1589
- f_path: "",
1590
- type: "selector"
1591
- })
1592
- }
1593
- }
1594
- }
1595
- }
1596
- for(let q =0;q<this.config[i].quantity;q++) {
1597
- this.data['device' + n].push(
1598
- {f_device_type: i, f_items:items}
1599
- )
1600
- }
1601
- }
1602
- n = n + 1
1603
- }
1604
- this.faultshow.number = this.tabs.length
1605
- },
1606
- init () {
1607
- // 无计划安检是否回更待办计划
1608
- this.data.isupdateplanitem = this.$appdata.getSingleValue('在线安检回更有计划') ? this.$appdata.getSingleValue('在线安检回更有计划') : 'false'
1609
- // 预约安检单工单编号
1610
- this.data.f_SafeToRepair_id = this.item.f_service_id
1611
- this.data.ename = Vue.user.ename
1612
- this.data.f_outlets = Vue.user.f_parentname
1613
- this.data.f_meetunit = Vue.user.orgpathnames
1614
- this.data.orgpathstr = Vue.user.orgpathstr
1615
- this.data.f_check_item_id = this.item.id
1616
- this.data.f_check_plan_id = this.f_plan_id
1617
- this.data.f_checker_id = Vue.user.id
1618
- this.data.f_checker_name = Vue.user.name
1619
- this.data.f_check_type = this.item.f_user_type
1620
- this.data.f_safecheck_type = this.item.f_safecheck_type
1621
- this.data.f_subcompany = this.item.f_subcompany
1622
- this.data.f_approved = this.item.f_approvedf_read_instructions
1623
- this.data.f_repair_approved = this.item.f_repair_approved
1624
- this.data.f_no_checkplan = this.item.f_no_checkplan
1625
- this.data.f_approved = this.item.f_approved
1626
- this.data.f_filialeid = this.item.f_filialeid || Vue.user.orgid
1627
- this.data.f_orgstr = this.item.f_orgstr
1628
- this.data.version = this.item.version
1629
- this.data.f_check_version=this.item.f_check_version
1630
- this.$set('data.f_meters', this.item.f_plan_meters)
1631
- this.$set('data.f_userinfo_code', this.item.f_userinfo_code)
1632
- // 安检状态
1633
- this.$set('data.f_entry_status', '入户')
1634
- this.$set('data.f_safe_type', '年度安检')
1635
- this.$set('data.f_usegas', '已使用')
1636
- this.$set('data.f_state',this.item.f_state)
1637
- this.$set('data.f_source', this.source?this.source:'安检')
1638
- this.$set('data.f_other_checker_name', '')
1639
- // 用户信息
1640
- this.$set('data.f_user_name', this.item.f_user_name)
1641
- this.$set('data.f_rent_phone', this.item.f_rent_phone)
1642
- this.$set('data.f_user_phone', this.item.f_user_phone || this.item.f_plan_meters[0].f_user_phone)
1643
- this.$set('data.f_userinfoid', this.item.f_userinfoid)
1644
- this.$set('data.f_address', this.item.f_address)
1645
- this.$set('data.f_card_id', this.item.f_card_id)
1646
- this.$set('data.f_slice_area', this.item.f_slice_area)
1647
- this.$set('data.f_recheck_id', this.item.id)
1648
- this.$set('rowCodata.f_recheck_id', this.item.id)
1649
- this.$set('data.f_street', this.item.f_street)
1650
- this.$set('data.f_room', this.item.f_room)
1651
- this.$set('data.f_building', this.item.f_building)
1652
- this.$set('data.f_unit', this.item.f_unit)
1653
- this.$set('data.f_floor', this.item.f_floor)
1654
- this.$set('data.f_residential_area' , this.item.f_residential_area)
1655
- this.$set('data.f_idnumber', this.item.f_idnumber)
1656
- this.$set('data.f_comments', this.item.f_comments)
1657
- this.$set('data.f_userproperties', this.item.f_userproperties)
1658
- this.$set('data.f_client_evaluation', '满意')
1659
- this.$set('data.f_userfiles_id', this.item.f_plan_meters[0].f_userfiles_id)
1660
- this.$set('data.f_valve_state', this.item.f_plan_meters[0].f_valve_state)
1661
- this.$set('data.f_off_valve_reason', this.item.f_plan_meters[0].f_off_valve_reason)
1662
- // 处置方式
1663
- this.$set('data.f_gas_guidelines', true)
1664
- this.$set('data.f_safety_warning', true)
1665
- this.$set('data.f_gas_manual', true)
1666
- this.$set('data.f_no_gas_device', false)
1667
- this.$set('data.f_close_valve', false)
1668
- this.$set('data.f_unload_battery', false)
1669
- if (this.data.f_check_item_id == '' && this.item.f_no_checkplan == '无计划安检' ) {
1670
- this.data.f_check_item_id = this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4()
1671
- }
1672
- if(this.item.f_no_checkplan == '复检'){
1673
- this.data.f_check_item_id = this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4()
1674
- }
1675
- if(this.item.f_plan_meters) {
1676
- for (let de in this.devices) {
1677
- if(typeof this.devices[de]=='function'){
1678
- continue
1679
- }
1680
- this.$set('data.device' + this.devices[de].n, [])
1681
- for (let i = 0; i < this.item.f_plan_meters.length; i++) {
1682
- if (this.item.f_plan_meters[i].f_meter_type) {
1683
- this.data.f_meter_type=this.item.f_plan_meters[i].f_meter_type
1684
- //tag)
1685
- if (this.devices[de].device == "燃气表" && this.item.f_plan_meters[i].f_meter_type.indexOf('机表') >= 0) {
1686
- this.data['device' + this.devices[de].n].push({
1687
- f_device_type: "燃气表",
1688
- f_items: [
1689
- {
1690
- f_defect_level: null,
1691
- f_device_id: "",
1692
- f_is_defect: "",
1693
- f_item_name: "基表编号",
1694
- f_item_value: this.item.f_plan_meters[i].f_meter_no,
1695
- f_path: "",
1696
- type: "number"
1697
- },
1698
- {
1699
- f_defect_level: null,
1700
- f_device_id: "",
1701
- f_is_defect: "",
1702
- f_item_name: "气表型号",
1703
- f_item_value: this.item.f_plan_meters[i].f_diaphgram_size,
1704
- f_path: "",
1705
- type: "string"
1706
- },
1707
- {
1708
- f_defect_level: null,
1709
- f_device_id: "",
1710
- f_is_defect: "",
1711
- f_item_name: "气表品牌",
1712
- f_item_value: this.item.f_plan_meters[i].f_aliasname,
1713
- f_path: "",
1714
- type: "string"
1715
- },
1716
- {
1717
- f_defect_level: null,
1718
- f_device_id: "",
1719
- f_is_defect: "",
1720
- f_item_name: "进气方向",
1721
- f_item_value: this.item.f_plan_meters[i].f_flow_direction,
1722
- f_path: "",
1723
- type: "string"
1724
- },
1725
- {
1726
- f_defect_level: null,
1727
- f_device_id: "",
1728
- f_is_defect: "",
1729
- f_item_name: "上期表读数",
1730
- f_item_value: this.item.f_plan_meters[i].f_prior_reading,
1731
- f_path: "",
1732
- type: "number"
1733
- },
1734
- {
1735
- f_defect_level: null,
1736
- f_device_id: "",
1737
- f_is_defect: "",
1738
- f_item_name: "表封号",
1739
- f_item_value: this.item.f_plan_meters[i].f_metertitles,
1740
- f_path: "",
1741
- type: "string"
1742
- }
1743
- ]
1744
- })
1745
- }
1746
- else if (this.devices[de].device == "燃气表") {
1747
- this.data['device' + this.devices[de].n].push({
1748
- f_device_type: "燃气表",
1749
- f_items: [
1750
- {
1751
- f_defect_level: null,
1752
- f_device_id: "",
1753
- f_is_defect: "",
1754
- f_item_name: "基表编号",
1755
- f_item_value: this.item.f_plan_meters[i].f_meter_no,
1756
- f_path: "",
1757
- type: "number"
1758
- },
1759
- {
1760
- f_defect_level: null,
1761
- f_device_id: "",
1762
- f_is_defect: "",
1763
- f_item_name: "气表型号",
1764
- f_item_value: this.item.f_plan_meters[i].f_diaphgram_size,
1765
- f_path: "",
1766
- type: "string"
1767
- },
1768
- {
1769
- f_defect_level: null,
1770
- f_device_id: "",
1771
- f_is_defect: "",
1772
- f_item_name: "气表品牌",
1773
- f_item_value: this.item.f_plan_meters[i].f_aliasname,
1774
- f_path: "",
1775
- type: "string"
1776
- },
1777
- {
1778
- f_defect_level: null,
1779
- f_device_id: "",
1780
- f_is_defect: "",
1781
- f_item_name: "进气方向",
1782
- f_item_value: this.item.f_plan_meters[i].f_flow_direction,
1783
- f_path: "",
1784
- type: "string"
1785
- },
1786
- {
1787
- f_defect_level: null,
1788
- f_device_id: "",
1789
- f_is_defect: "",
1790
- f_item_name: "上期表读数",
1791
- f_item_value: this.item.f_plan_meters[i].f_prior_reading,
1792
- f_path: "",
1793
- type: "number"
1794
- },
1795
- {
1796
- f_defect_level: null,
1797
- f_device_id: "",
1798
- f_is_defect: "",
1799
- f_item_name: "表封号",
1800
- f_item_value: this.item.f_plan_meters[i].f_metertitles,
1801
- f_path: "",
1802
- type: "string"
1803
- }
1804
- ]
1805
- })
1806
- }
1807
- if(this.devices[de].device == "燃气表" && this.item.f_plan_meters[i].f_meter_type.indexOf('物联网表') >= 0){
1808
- this.data['device' + this.devices[de].n].forEach(device => {
1809
- if (!this.data.f_collection_type) {
1810
- this.data.f_collection_type = this.item.f_plan_meters[i].f_collection_type
1811
- delete this.config['燃气表']['items']['累购气量']
1812
- delete this.config['燃气表']['items']['已用金额']
1813
- delete this.config['燃气表']['items']['剩余气量']
1814
- delete this.config['燃气表']['items']['气量异常差值']
1815
- delete this.config['燃气表']['items']['金额异常差值']
1816
- device.f_items.push(
1817
- {
1818
- f_defect_level: null,
1819
- f_device_id: "",
1820
- f_is_defect: "",
1821
- f_item_name: "初始表底",
1822
- isshow: true,
1823
- f_item_value: this.item.f_plan_meters[i].f_initial_base,
1824
- f_path: "",
1825
- type: "number"
1826
- },
1827
- {
1828
- f_defect_level: null,
1829
- f_device_id: "",
1830
- f_is_defect: "",
1831
- f_item_name: "累购金额",
1832
- f_item_value: this.item.f_plan_meters[i].f_total_fee,
1833
- f_path: "",
1834
- type: "number"
1835
- },
1836
- {
1837
- f_defect_level: null,
1838
- f_device_id: "",
1839
- f_is_defect: "",
1840
- f_item_name: "已用气量",
1841
- f_item_value: this.item.f_plan_meters[i].f_meter_base,
1842
- f_path: "",
1843
- type: "number"
1844
- },
1845
- {
1846
- f_defect_level: null,
1847
- f_device_id: "",
1848
- f_is_defect: "",
1849
- f_item_name: "剩余金额",
1850
- f_item_value: '',
1851
- f_path: "",
1852
- type: "number"
1853
- },
1854
- {
1855
- f_defect_level: null,
1856
- f_device_id: "",
1857
- f_is_defect: "",
1858
- f_item_name: "系统余额",
1859
- f_item_value: this.item.f_plan_meters[i].f_balance_amount,
1860
- f_path: "",
1861
- type: "number"
1862
- }
1863
- )
1864
- }
1865
- })
1866
- } else if (this.devices[de].device == "燃气表" && this.item.f_plan_meters[i].f_collection_type) {
1867
- this.data['device' + this.devices[de].n].forEach(device => {
1868
- /*
1869
- "累购气量":{"index":8,"type":"number","readonly":true},
1870
- "累购金额":{"index":8,"type":"number","readonly":true},
1871
- "字轮读数":{"index":9,"type":"number","checkmust": true},
1872
- "已用金额":{"index":9,"type":"number","checkmust": true},
1873
- "剩余气量":{"index":10,"type":"number","checkmust": true},
1874
- "剩余金额":{"index":10,"type":"number","checkmust": true},
1875
- "气量异常差值":{"index":11,"type":"number","readonly": true},
1876
- "金额异常差值":{"index":11,"type":"number","readonly": true}
1877
- */
1878
- if (this.item.f_plan_meters[i].f_collection_type == '按金额') {
1879
- if (!this.data.f_collection_type) {
1880
- this.data.f_collection_type = this.item.f_plan_meters[i].f_collection_type
1881
- delete this.config['燃气表']['items']['累购气量']
1882
- delete this.config['燃气表']['items']['已用气量']
1883
- delete this.config['燃气表']['items']['剩余气量']
1884
- delete this.config['燃气表']['items']['气量异常差值']
1885
- delete this.config['燃气表']['items']['系统余额']
1886
- device.f_items.push(
1887
- {
1888
- f_defect_level: null,
1889
- f_device_id: "",
1890
- f_is_defect: "",
1891
- f_item_name: "初始表底",
1892
- isshow: false,
1893
- f_item_value: '',
1894
- f_path: "",
1895
- type: "number"
1896
- },
1897
- {
1898
- f_defect_level: null,
1899
- f_device_id: "",
1900
- f_is_defect: "",
1901
- f_item_name: "累购金额",
1902
- f_item_value: this.item.f_plan_meters[i].f_total_fee,
1903
- f_path: "",
1904
- type: "number"
1905
- },
1906
- {
1907
- f_defect_level: null,
1908
- f_device_id: "",
1909
- f_is_defect: "",
1910
- f_item_name: "已用金额",
1911
- f_item_value: null,
1912
- f_path: "",
1913
- type: "number"
1914
- },
1915
- {
1916
- f_defect_level: null,
1917
- f_device_id: "",
1918
- f_is_defect: "",
1919
- f_item_name: "剩余金额",
1920
- f_item_value: null,
1921
- f_path: "",
1922
- type: "number"
1923
- },
1924
- {
1925
- f_defect_level: null,
1926
- f_device_id: "",
1927
- f_is_defect: "",
1928
- f_item_name: "金额异常差值",
1929
- f_item_value: null,
1930
- f_path: "",
1931
- type: "number"
1932
- }
1933
- )
1934
- }
1935
- } else
1936
- if (this.item.f_plan_meters[i].f_collection_type == '按气量') {
1937
- if (!this.data.f_collection_type) {
1938
- this.data.f_collection_type = this.item.f_plan_meters[i].f_collection_type
1939
- delete this.config['燃气表']['items']['累购金额']
1940
- delete this.config['燃气表']['items']['已用金额']
1941
- delete this.config['燃气表']['items']['剩余金额']
1942
- delete this.config['燃气表']['items']['金额异常差值']
1943
- delete this.config['燃气表']['items']['系统余额']
1944
- device.f_items.push(
1945
- {
1946
- f_defect_level: null,
1947
- f_device_id: "",
1948
- f_is_defect: "",
1949
- f_item_name: "初始表底",
1950
- isshow: true,
1951
- f_item_value: this.item.f_plan_meters[i].f_initial_base,
1952
- f_path: "",
1953
- type: "number"
1954
- },
1955
- {
1956
- f_defect_level: null,
1957
- f_device_id: "",
1958
- f_is_defect: "",
1959
- f_item_name: "累购气量",
1960
- f_item_value: this.item.f_plan_meters[i].f_total_gas,
1961
- f_path: "",
1962
- type: "number"
1963
- },
1964
- {
1965
- f_defect_level: null,
1966
- f_device_id: "",
1967
- f_is_defect: "",
1968
- f_item_name: "已用气量",
1969
- f_item_value: this.item.f_plan_meters[i].f_meter_base,
1970
- f_path: "",
1971
- type: "number"
1972
- },
1973
- {
1974
- f_defect_level: null,
1975
- f_device_id: "",
1976
- f_is_defect: "",
1977
- f_item_name: "剩余气量",
1978
- f_item_value: "",
1979
- f_path: "",
1980
- type: "number"
1981
- },
1982
- {
1983
- f_defect_level: null,
1984
- f_device_id: "",
1985
- f_is_defect: "",
1986
- f_item_name: "气量异常差值",
1987
- f_item_value: null,
1988
- f_path: "",
1989
- type: "number"
1990
- }
1991
- )
1992
- }
1993
- }
1994
- })
1995
- } else if(this.devices[de].device == "燃气表"){
1996
- this.data['device' + this.devices[de].n].forEach(device => {
1997
- if (!this.data.f_collection_type) {
1998
- this.data.f_collection_type = this.item.f_plan_meters[i].f_collection_type
1999
- delete this.config['燃气表']['items']['累购金额']
2000
- delete this.config['燃气表']['items']['已用金额']
2001
- delete this.config['燃气表']['items']['剩余金额']
2002
- delete this.config['燃气表']['items']['金额异常差值']
2003
- delete this.config['燃气表']['items']['系统余额']
2004
- device.f_items.push(
2005
- {
2006
- f_defect_level: null,
2007
- f_device_id: "",
2008
- f_is_defect: "",
2009
- f_item_name: "初始表底",
2010
- isshow: true,
2011
- f_item_value: this.item.f_plan_meters[i].f_initial_base,
2012
- f_path: "",
2013
- type: "number"
2014
- },
2015
- {
2016
- f_defect_level: null,
2017
- f_device_id: "",
2018
- f_is_defect: "",
2019
- f_item_name: "累购气量",
2020
- f_item_value: this.item.f_plan_meters[i].f_total_gas,
2021
- f_path: "",
2022
- type: "number"
2023
- },
2024
- {
2025
- f_defect_level: null,
2026
- f_device_id: "",
2027
- f_is_defect: "",
2028
- f_item_name: "已用气量",
2029
- f_item_value: this.item.f_plan_meters[i].f_meter_base,
2030
- f_path: "",
2031
- type: "number"
2032
- },
2033
- {
2034
- f_defect_level: null,
2035
- f_device_id: "",
2036
- f_is_defect: "",
2037
- f_item_name: "剩余气量",
2038
- f_item_value: '',
2039
- f_path: "",
2040
- type: "number"
2041
- },
2042
- {
2043
- f_defect_level: null,
2044
- f_device_id: "",
2045
- f_is_defect: "",
2046
- f_item_name: "气量异常差值",
2047
- isshow:false,
2048
- f_item_value: null,
2049
- f_path: "",
2050
- type: "number"
2051
- }
2052
- )
2053
- }
2054
- })
2055
- }
2056
- }
2057
- }
2058
- }
2059
- }
2060
- this.$goto('safecheck-userinfo', {userinfo:this.data}, 'repair')
2061
- }
2062
- },
2063
- watch: {
2064
- 'row' () {
2065
- //tag
2066
- this.copy()
2067
- }
2068
- },
2069
- async ready () {
2070
- if (this.item.f_userinfoid){
2071
- let http = new HttpResetClass()
2072
- let response = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/af-telephone/rs/sql/tel_singleTable_OrderBy`, {
2073
- data: {
2074
- items: 'count(0) as num',
2075
- tablename: 't_userfiles',
2076
- condition: `f_userinfo_id = '${this.item.f_userinfoid}' and f_meter_classify != '物联网表'`,
2077
- orderitem: '1'
2078
- }
2079
- }, {resolveMsg: null, rejectMsg: null})
2080
- if (response.data[0].num > 0 ){
2081
- this.tabs.push({
2082
- header: '抄表', complete: 'meter-reading', class: 'meter-reading-class', props: null
2083
- })
2084
- }
2085
- }
2086
- //送气超期功能
2087
- //await this.isoverDate()
2088
- this.putDevices()
2089
- //如果已检,则提取安检单
2090
- if (this.item.f_state != '未检') {
2091
- if (this.role == 'inspect' || this.role == 'androidview') {
2092
- HostApp.__callback__ = this.loaded
2093
- HostApp.__this__ = this
2094
- let that = this
2095
- let value = {}
2096
- if (this.role == 'inspect') {
2097
- let condition=` f_check_item_id ='${this.item.id}'`
2098
- if (this.item.f_no_checkplan == '无计划安检') {
2099
- condition += ` and f_no_checkplan = '无计划安检'`
2100
- }
2101
- value = this.$androidUtil.bzLogic('path_getPhoneCheckPaper', {condition: condition})
2102
- } else {
2103
- value = await this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/path/getUserinfomation`, {data: {condition: `id = '${this.item.f_paper_id}'`}})
2104
- }
2105
- Util.replaceFalse(value)
2106
- if (value.data.length != 0) {
2107
- that.$set('data', value.data[0])
2108
- if (this.data.f_collection_type == '按气量') {
2109
- delete this.config['燃气表']['items']['累购金额']
2110
- delete this.config['燃气表']['items']['已用金额']
2111
- delete this.config['燃气表']['items']['剩余金额']
2112
- delete this.config['燃气表']['items']['金额异常差值']
2113
- delete this.config['燃气表']['items']['系统余额']
2114
- } else if (this.data.f_collection_type == '按金额') {
2115
- delete this.config['燃气表']['items']['累购气量']
2116
- delete this.config['燃气表']['items']['已用气量']
2117
- delete this.config['燃气表']['items']['剩余气量']
2118
- delete this.config['燃气表']['items']['气量异常差值']
2119
- delete this.config['燃气表']['items']['系统余额']
2120
- }
2121
- //tag)
2122
- if (value.data[0].f_devices) {
2123
- for (let da in that.devices) {
2124
- if(typeof that.devices[da]=='function'){
2125
- continue
2126
- }
2127
- that.$set('data.device' + that.devices[da].n, [])
2128
- }
2129
- value.data[0].f_devices.forEach((item) => {
2130
- for (let i in item.f_items) {
2131
- if(typeof item.f_items[i]=='function'){
2132
- continue
2133
- }
2134
- for (let de in that.config[item.f_device_type].items) {
2135
- if(typeof that.config[item.f_device_type].items[de]=='function'){
2136
- continue
2137
- }
2138
- if (item.f_items[i].f_item_name == de) {
2139
- if (that.config[item.f_device_type].items[de].type == 'selector' || that.config[item.f_device_type].items[de].type == 'checkbox') {
2140
- item.f_items[i].f_item_value = []
2141
- } else {
2142
- item.f_items[i].f_item_value = ''
2143
- }
2144
- }
2145
- }
2146
- for (let j in item.f_items[i].f_item_lists) {
2147
- if(typeof item.f_items[i].f_item_lists[j]=='function'){
2148
- continue
2149
- }
2150
- if (item.f_items[i].f_item_value instanceof Array) {
2151
- item.f_items[i].f_item_value.push(item.f_items[i].f_item_lists[j].f_item_value)
2152
- } else {
2153
- item.f_items[i].f_item_value = item.f_items[i].f_item_lists[j].f_item_value
2154
- }
2155
- }
2156
-
2157
- }
2158
- for (let de in that.devices) {
2159
- if(typeof that.devices[de]=='function'){
2160
- continue
2161
- }
2162
- if (that.devices[de].device == item.f_device_type) {
2163
- that.data['device' + that.devices[de].n].push({
2164
- f_device_type: item.f_device_type,
2165
- f_items: item.f_items
2166
- })
2167
- //tag)
2168
- }
2169
- }
2170
- })
2171
- if (this.role == 'androidview') {
2172
- Util.androidRatifyPics(that.data, this.$androidUtil.getProxyUrl())
2173
- Util.androidRatifyPics(that.picture, this.$androidUtil.getProxyUrl())
2174
- Util.booleanFilter(that.data)
2175
- }
2176
- //tag)
2177
- }
2178
- } else {
2179
- this.init()
2180
- }
2181
- if(this.parentPage && this.parentPage=='CurrentCreate'){
2182
- let isRecodr = this.$appdata.getSingleValue('无限制录音'); //单值参数,为true则是开启全程录音
2183
- if (isRecodr) {
2184
- if (isRecodr=='true') {
2185
- this.$showMessage("为了保证服务质量,您的电话将会被全程录音!")
2186
- // 初始化录音
2187
- let resse = this.record()
2188
- }
2189
- }
2190
- }
2191
- this.$goto('safecheck-userinfo', {userinfo:this.data}, 'repair')
2192
- } else {
2193
- let that = this
2194
- let id
2195
- if (this.role == 'view') {
2196
- id = this.item.id
2197
- }
2198
- this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/path/getUserinfomation`, {data:{condition:`id = '${id}'`}}).then((respanse)=> {
2199
- if (respanse.data.length != 0) {
2200
- that.data = Object.assign(that.data,respanse.data[0])
2201
- if(respanse.data[0].f_devices) {
2202
- for (let da in that.devices) {
2203
- that.$set('data.device' + that.devices[da].n, [])
2204
- }
2205
- respanse.data[0].f_devices.forEach((item) => {
2206
- for (let de in that.devices) {
2207
- if (that.devices[de].device == item.f_device_type) {
2208
- that.data['device' + that.devices[de].n].push({
2209
- f_device_type: item.f_device_type,
2210
- f_items: item.f_items
2211
- })
2212
- }
2213
- }
2214
- })
2215
- }
2216
- Util.replaceFalse(that.data)
2217
- Util.booleanFilter(that.data)
2218
- if(this.role == 'view'){
2219
- Util.ratifyPics(that.data)
2220
- }else{
2221
- Util.androidRatifyPics(that.data,this.$androidUtil.getProxyUrl())
2222
- }
2223
- } else {
2224
- alert("该安检单可能已不在本地!")
2225
- this.init()
2226
- }
2227
- this.$goto('safecheck-userinfo', {userinfo:this.data}, 'paper-router')
2228
- }
2229
- ).catch(
2230
- (respanse) => {
2231
- alert('查找安检单失败')
2232
- })
2233
- }
2234
- }else{
2235
- if(this.parentPage && (this.parentPage == 'CurrentCreate' || this.parentPage == 'AddPlanItem') ){
2236
- //tag
2237
- let isRecodr = this.$appdata.getSingleValue('无限制录音'); //单值参数,为true则是开启全程录音
2238
- if (isRecodr) {
2239
- if (isRecodr=='true') {
2240
- // this.$showMessage("为了保证服务质量,您的电话将会被全程录音!")
2241
- // 初始化录音
2242
- let resse = this.record()
2243
- }
2244
- }
2245
- }
2246
- this.init()
2247
- }
2248
- },
2249
- events: {
2250
- 'tijiao': function () {
2251
- // 事件回调内的 `this` 自动绑定到注册它的实例上
2252
- this.confirm()
2253
- }
2254
- }
2255
- }
2256
- </script>
2257
- <style lang="less">
2258
- @import "../../../../src/bootstrap/less/variables.less";
2259
- .noclickbut {
2260
- pointer-events: none;
2261
- }
2262
- .tab-befor-img (@url) {
2263
- content: '';
2264
- background-image: url("@{url}");
2265
- background-size: 20px;
2266
- display: inline-block;
2267
- margin-right: 8px;
2268
- margin-top: 0.3em;
2269
- height: 1.3em;
2270
- width: 1.3em;
2271
- vertical-align: -35%;
2272
- }
2273
-
2274
- @media screen and (min-width: 768px) {
2275
- .android-repair-order > div > ul a {
2276
- font-size: @font-size-h2;
2277
- margin: 0.3em 0;
2278
- }
2279
- }
2280
- .repair-details-class{
2281
- &::before {
2282
- .tab-befor-img("../../../assets/huneiweixiu1.png");
2283
- }
2284
- }
2285
- .repair-info-class {
2286
- &::before {
2287
- .tab-befor-img("../../../assets/baoxiuxinxi1.png");
2288
- }
2289
- }
2290
- .repair-user-info-class {
2291
- &::before {
2292
- .tab-befor-img("../../../assets/jibenxinxi1.png")
2293
- }
2294
- }
2295
-
2296
- .door-service-class {
2297
- &::before {
2298
- .tab-befor-img("../../../assets/huneiweixiu1.png")
2299
- }
2300
- }
2301
-
2302
- .pipeline-class {
2303
- &::before {
2304
- .tab-befor-img("../../../assets/guandao1.png")
2305
- }
2306
- }
2307
-
2308
- .device-service-class {
2309
- &::before {
2310
- .tab-befor-img("../../../assets/shebeiweixiu1.png")
2311
- }
2312
- }
2313
-
2314
- .trouble-removal-class {
2315
- &::before {
2316
- .tab-befor-img("../../../assets/shiguchuli.png")
2317
- }
2318
- }
2319
-
2320
- .cooking-utensils-class {
2321
- &::before {
2322
- .tab-befor-img("../../../assets/zaoju1.png")
2323
- }
2324
- }
2325
-
2326
- .outlay-class {
2327
- &::before {
2328
- .tab-befor-img("../../../assets/feiyong1.png")
2329
- }
2330
- }
2331
- .meter-reading-class {
2332
- &::before {
2333
- .tab-befor-img("../../../assets/guzhanghuizong1.png")
2334
- }
2335
- }
2336
- .fault-all-class {
2337
- &::before {
2338
- .tab-befor-img("../../../assets/guzhanghuizong1.png")
2339
- }
2340
- }
2341
- .photo-write-class {
2342
- &::before {
2343
- .tab-befor-img("../../../assets/zaoju.png")
2344
- }
2345
- }
2346
- .delay-apply-class {
2347
- &::before {
2348
- .tab-befor-img("../../../assets/yonghubaoxiu.png")
2349
- }
2350
- }
2351
-
2352
- .repair-back-class {
2353
- &::before {
2354
- .tab-befor-img("../../../assets/fanhui.png")
2355
- }
2356
- }
2357
- .butt2 {
2358
- display: inline;
2359
- float: right;
2360
- width: 10px;
2361
- text-align: center;
2362
- align-items:center;
2363
- position: absolute;
2364
- top:50%;
2365
-
2366
- left:90%;
2367
- transform: translate(-50%,-50%);
2368
- }
2369
- .linesty{
2370
- display: inline-block;
2371
- height:1px;
2372
- width:100%;
2373
- background:#d0d0d0;
2374
- overflow:hidden;
2375
- vertical-align: middle;
2376
- }
2377
- .spanboder{
2378
- border-bottom:2px solid #499edf;
2379
- padding-bottom: 8px
2380
- }
2381
- .app-botton {
2382
- position:fixed;
2383
- background: #87b2dd;
2384
- right:8px;
2385
- color: #FFF;
2386
- padding: 8px;
2387
- text-align: center;
2388
- font-size: 1.2em;
2389
- z-index: 10;
2390
- opacity:0.5;
2391
- bottom: 50px;
2392
- margin-top: -10px;
2393
- height: 40px;
2394
- }
2395
- .android-repair-order > div > ul a {
2396
- font-size: 12px;
2397
- color: #333333;
2398
- padding: 13px 16px;
2399
- }
2400
- </style>
1
+ <template>
2
+ <div id="savebut" class="no-close row android-repair-order" style="background-color: #f9f9f9">
3
+ <div class="col-sm-12 col-xs-12" >
4
+ <ul class="nav nav-tabs" style="background:#ffffff;overflow-y: hidden">
5
+ <li v-for="row in tabs" @click="tabSelect(row,$index)" :class="{active1: row.complete === componentName}"
6
+ v-if="$index < number+1 && $index < faultshow.number" >
7
+ <a href="#" style="background-color: #ffffff;color: #666666;font-size: 16px;font-family:SimSun" :class="row.class">
8
+ <span class="spanboder">{{row.header}}</span>
9
+ <img class="butt2" :src="imgback(row.complete === componentName,row.header === header)"></a>
10
+ <p></p>
11
+ </li>
12
+ <div class="col-sm-12 col-xs-12 repair-bg" v-show="routeShow">
13
+ <route name='repair' :reuse="false"></route>
14
+ </div>
15
+ <li v-for="row in tabs" @click="tabSelect(row,$index)" :class="{active1: row.complete === componentName}"
16
+ v-if="$index > number && $index < faultshow.number ">
17
+ <a href="#" style="background-color: #ffffff;color: #666666;font-size: 16px;font-family:SimSun" :class="row.class">
18
+ <span class="spanboder">{{row.header}}</span>
19
+ <img class="butt2" :src="imgback(row.complete === componentName,row.header === header)"></a>
20
+ <p></p>
21
+ </li>
22
+ <div class="col-sm-12 col-xs-12 repair-bg" v-if="actionEnabled ">
23
+ <div class="auto select-overspread form-horizontal repair-bg " style="padding-bottom:5px;">
24
+ <div class="bq-parent">
25
+ <blockquote class="blockquote">
26
+ <p>安检上传</p>
27
+ </blockquote>
28
+ </div>
29
+ <div class="panel panel-default auto repair-info-content">
30
+ <div class="panel-body ">
31
+ <div class="row auto">
32
+ <!--<div class="col-xs-12 col-sm-12 col-md-12" :style="timeSet(this.isneedDate)?'':'display:none'">-->
33
+ <!--<label>请输入超期原因:</label><br/>-->
34
+ <!--<textarea style="width: 100%;" v-model=""></textarea>-->
35
+ <!--</div>-->
36
+ <div class="col-xs-12 col-sm-12 col-md-12 flex-between" style="margin-top: 20px;">
37
+ <div class="col-xs-3 col-sm-3 col-md-3" v-if="parentPage=='CurrentCreate'">
38
+ <button type="button" name="button" class="col-sm-3 btn btn-primary" @click="save('temp')">
39
+ 临时保存
40
+ </button>
41
+ </div>
42
+ <div class="col-xs-3 col-sm-3 col-md-3">
43
+ <button class="col-sm-3 btn btn-primary" @click="save('finish')">
44
+ 本地缓存
45
+ </button>
46
+ </div>
47
+ <div class="col-xs-3 col-sm-3 col-md-3">
48
+ <button type="button" name="button" class="col-sm-3 btn btn-primary" @click="uploadCheckPaper">
49
+ 上传
50
+ </button>
51
+ </div>
52
+ <div v-if="show_torepair">
53
+ <button type="button" name="button" class="col-sm-3 btn btn-primary" @click="showmod">
54
+ 转维修
55
+ </button>
56
+ </div>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ </div>
61
+ </div>
62
+ </div>
63
+ </ul>
64
+ </div>
65
+ <modal :show.sync="showModal2" :backdrop="false" style="font-size: 15px">
66
+ <div slot="modal-header" class="modal-header upuserinfo_sel">
67
+ <h4 class="modal-title">
68
+ 转维修
69
+ </h4>
70
+ </div>
71
+ <div slot="modal-body" class="modal-body">
72
+ <div class="row">
73
+ <ol style="border: 1px solid green;padding: 15px 0 15px 20px">
74
+ <li v-for="row in repairDefect.data" >{{row}}</li>
75
+ </ol>
76
+ </div>
77
+ <div class="row" style="margin-top: 10px">
78
+ <label class="font_normal_body">派发类型</label>
79
+ <v-select :value.sync="selectData.dispatchType" :value-single="true" v-model="selectData.dispatchType"
80
+ :options='dispatchTypeOptions' placeholder='派发类型'
81
+ close-on-select>
82
+ </v-select>
83
+ </div>
84
+ <div class="row" style="margin-top: 10px" v-if="selectData.dispatchType=='派发给维修员'">
85
+ <label class="font_normal_body">维&ensp;修&ensp;员</label>
86
+ <v-select
87
+ :value.sync="selectData.f_repairman"
88
+ :value-single="true"
89
+ :options='repairers'
90
+ placeholder='请选择维修员'
91
+ close-on-select></v-select>
92
+ </div>
93
+ <div class="row" style="margin-top: 10px" v-if="selectData.dispatchType=='派发给站点'">
94
+ <label class="font_normal_body">站&ensp;&ensp;&ensp;&ensp;点</label>
95
+ <right-tree
96
+ islist
97
+ :source="'dep=this.getParentByType($organization$).getSpecialResByType($department$),tool.getFullTree(dep.where(row.hasSpecialRole($派单员$)))'"
98
+ @re-res="getSiteRes"></right-tree>
99
+ </div>
100
+ <div class="row" style="margin-top: 10px">
101
+ <label class="font_normal_body">报修类型</label>
102
+ <v-select :value.sync="selectData.f_repairtype"
103
+ class="select select_list" @change="getDays"
104
+ :value-single="true"
105
+ :options='repairTypeOptions'
106
+ close-on-select>
107
+ </v-select>
108
+ </div>
109
+ <div class="row" style="margin-top: 10px">
110
+ <label class="font_normal_body">截止天数</label>
111
+ <v-select :value="selectData.day" :value-single="true"
112
+ v-model="selectData.day" class="select select_list"
113
+ :options='days' placeholder='请选择截止天数'
114
+ close-on-select
115
+ v-on:change="daychange" style="width: 60%"></v-select>
116
+ </div>
117
+ <div class="row" style="margin-top: 10px">
118
+ <label class="font_normal_body">截止时间</label>
119
+ <datepicker placeholder="请选择截至时间"
120
+ :value.sync="selectData.f_finish_date"
121
+ v-model="selectData.f_finish_date"
122
+ :format="'yyyy-MM-dd HH:mm:ss'"
123
+ style="width: 60%"
124
+ :disabled="true"></datepicker>
125
+ </div>
126
+ <div class="row" style="margin-top: 10px">
127
+ <label class="font_normal_body" >备&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;注</label>
128
+ <div class="btn-group" style="width:60%">
129
+ <textarea style="width:100%;height: 100px" v-model="selectData.f_remarks"></textarea>
130
+ </div>
131
+ </div>
132
+ </div>
133
+ <div slot="modal-footer" class="modal-footer" style="text-align: center">
134
+ <button type="button" name="button" class="col-sm-3 btn btn-primary" @click="rectification">转维修</button>
135
+ <button type="button" name="button" class="col-sm-3 btn btn-primary" @click="cancel1">取消</button>
136
+ </div>
137
+ </modal>
138
+ </div>
139
+ </template>
140
+
141
+ <script>
142
+ import Vue from 'vue'
143
+ import * as Util from '../../../components/Util'
144
+ import { HttpResetClass } from 'vue-client'
145
+ import co from 'co'
146
+ import $ from "jquery";
147
+ import MeterReading from './MeterReading'
148
+ let loadParamGem = async function (self) {
149
+ await self.$LoadParams.loadParam()
150
+ }
151
+
152
+ export default {
153
+ title: '安检单',
154
+ props: ['f_plan_id', 'item', 'role','parentPage','source'],
155
+ // props: ['f_plan_id', 'role'],
156
+ data() {
157
+ return {
158
+ //测试数据
159
+ // f_plan_id:'',
160
+ // role:'inspect',
161
+ // item:{"f_approved_time":null,"f_user_family_remarks":null,"f_street":"测试街道","f_repair_approved_time":null,
162
+ // "f_user_type":null,"f_approved_by":null,"f_card_id":null,"f_remark":null,"f_building":"1","f_batch_number":null,
163
+ // "f_idnumber":null,"f_state":"未检","id":"0EFE0EE2-B155-46F9-8DE0-38C022664A4D","f_complete":null,"f_check_state":null,"f_last_check_state":"拒检",
164
+ // "f_user_inhome_time":null,"f_residential_area":"测试小区1","version":1,"f_processid":null,"f_last_check_result":"{\"result\":\"正常\",\"data\":[]}",
165
+ // "f_area":null,"f_usegas":null,"f_user_phone":"16566546548","f_slice_area":"营业大区","f_approved":"未审核","f_upload_state":"未传","f_user_check_time":null,
166
+ // "f_unit":"1","f_user_spare_phone":null,"f_last_check_date":null,"f_userproperties":null,"f_userfile_id":null,"f_prearranged_date":null,"f_filialeid":"453",
167
+ // "f_branch":null,"f_orgstr":null,"f_plan_year":2020,"f_orgid":null,"f_approval_notified":null,"f_plan_month":4,"f_approved_note":null,"f_filialeids":null,
168
+ // "f_floor":"1","f_flag":null,"f_repair_approved_note":null,"f_userinfo_code":"00000002","f_create_time":"2020-05-10 18:56:03","f_meter_no":"","f_station":null,
169
+ // "f_repair_approved":"未审核","f_no_checkplan":"有计划安检","f_plan_name":"关于","f_repair_approved_by":null,"f_room":"1","f_office":null,"f_comments":null,
170
+ // "f_address":"兰山街道泰盛小区1栋1单元1层1室","id_back":null,"f_userinfoid":"2","f_subcompany":null,"f_addressid":null,"f_user_phone2":null,
171
+ // "f_user_equipment_remarks":null,"f_plan_id":"0819ea6707ad4d9dad217c06a87f4227","f_user_name":"用户二",
172
+ // "f_plan_meters":[{"f_weizhi":null,"f_flow_direction":"右表","f_metertitles":"","f_prior_reading":0,"f_meter_no":"2119035714","f_collection_type":"按金额","f_aliasname":"先锋系统结算物联网表","f_meter_type":"物联网表","version":3,"f_maker":null,"f_metergasnums":0,"f_total_fee":100,"f_diaphgram_size":"G2.5","f_total_gas":0,"id":18663},{"f_weizhi":null,"f_flow_direction":"右表","f_metertitles":"","f_prior_reading":0,"f_meter_no":"2118999901","f_collection_type":"按金额","f_aliasname":"先锋系统结算物联网表","f_meter_type":"物联网表","version":1,"f_maker":null,"f_metergasnums":0,"f_total_fee":0,"f_diaphgram_size":"G2.5","f_total_gas":0,"id":18663}]
173
+ // },
174
+
175
+ data: {
176
+ f_devices: [],
177
+ f_defect_content:'',
178
+ f_recording1_path:'',
179
+ f_visit_number:'',
180
+ f_remark:''
181
+ },
182
+ imgsnum:this.$appdata.getSingleValue('安检总体照片数量') ? this.$appdata.getSingleValue('安检总体照片数量'):1, // 安检整体照片默认必须拍1张
183
+ updateuserphone:false, //安检时是否更新用户电话
184
+ updatemetermodel:false, //安检时是否更新表型号
185
+ updatemeternumber:false, //安检时是否更新表号
186
+ beforephone:'',
187
+ isUpload:false,
188
+ show_torepair: false,
189
+ onlySave:true, //判断保存还是保存并上传
190
+ livedispose:'',
191
+ refuseinspection:'', // 拒检拍照是否提示
192
+ notencountered:'', // 到访不遇拍照是否提示
193
+ startClick:false, //开始安检按钮是否可点击
194
+ isStrat: false, //是否开始安检
195
+ checkResult:{},//查询结果
196
+ newcheckResult:{},
197
+ repairDefect : {
198
+ result: '正常',
199
+ data: []
200
+ },
201
+ rowCodata:{},
202
+ repairers: [],
203
+ timer: null,
204
+ showModal: false,
205
+ showModal2:false,
206
+ pic_to_be_viewed: '',
207
+ showBack:true,
208
+ devices: [],
209
+ f_devices : [],
210
+ isToRepair:false,
211
+ clickBack:true, //是否点击返回按钮
212
+ isSafeCheckToRepair:false,//是否转维修
213
+ Url:this.$androidUtil.getProxyUrl(),
214
+ detail:{},
215
+ defectDevice:{},
216
+ user:{},
217
+ is_has_jingweidu: this.$appdata.getSingleValue('照片水印加经纬度') || 'false',
218
+ dispatchTypeOptions: [{label: '派发给维修员', value: '派发给维修员'},{label: '派发给站点', value: '派发给站点'}],
219
+ selectData:{
220
+ f_finish_date:'',
221
+ day:'',
222
+ dispatchType:'派发给维修员',
223
+ f_repairman:'',
224
+ f_remarks:'',
225
+ f_repairtype:''
226
+ },
227
+ model: { //转维修数据
228
+ // 一次派单
229
+ serviceacitivity: [{
230
+ f_service_acitivity_type: '派单'
231
+ }],
232
+ f_source:'安检',
233
+ f_service_id: '',
234
+ f_contact_phone: '',
235
+ f_meetunit: '',
236
+ f_phone: '',
237
+ f_user_name: '',
238
+ f_address: '',
239
+ f_repair_date: Util.toStandardTimeString(),
240
+ f_card_id: '',
241
+ // f_department: '', 站点选择
242
+ f_reciever:'',
243
+ f_remarks: '',
244
+ f_user_type: '',
245
+ f_area: '',
246
+ f_unit_name:'',
247
+ f_street: '',
248
+ f_residential_area: '',
249
+ f_building: '',
250
+ f_unit: '',
251
+ f_floor: '',
252
+ f_room: '',
253
+ aState: null,
254
+ f_repairtype: '',
255
+ f_repairitems:{},
256
+ },
257
+ repairitems:[],
258
+ meading:'转站点',
259
+ repairTypeOptions:this.$appdata.getParam('报修类型'),
260
+ config: {
261
+ "燃气表":{
262
+ "checkmust":true,
263
+ "index":1,
264
+ "items":{
265
+ //"燃气表照片":{"index":1,"type":"picture","remark":"(拍摄清晰的表具编号、字轮数、剩余气量等)"},
266
+ "基表编号":{"index":1,"type":"string","readonly":true},
267
+ "气表型号":{"index":2,"type":"string","readonly":true},
268
+ "气表品牌":{"index":3,"type":"string","readonly":true},
269
+ "进气方向":{"index":4,"type":"string","readonly":true},
270
+ "初始表底":{"index":5,"type":"number","isshow":false,"readonly":true},
271
+ "上期表读数":{"index":6,"type":"number","readonly":true,isshow:false},
272
+ "累购气量":{"index":7,"type":"number","readonly":true},
273
+ "累购金额":{"index":7,"type":"number","readonly":true},
274
+ "已用气量":{"index":8,"type":"number","checkmust": false},//基表数
275
+ "已用金额":{"index":8,"type":"number","checkmust": false},
276
+ "剩余气量":{"index":9,"type":"number","checkmust": false},//累购-已用
277
+ //显示屏数 --实际剩余气量
278
+ "剩余金额":{"index":9,"type":"number","checkmust": false},
279
+ "气量异常差值":{"index":10,"type":"number","readonly": true},
280
+ "金额异常差值":{"index":10,"type":"number","readonly": true},
281
+ "系统余额":{"index":10,"type":"number","readonly": true},
282
+ "表封号":{"index":11,"type":"string","readonly": true},
283
+ "燃气表照片":{"index":12,"type":"picture","checkmust": false}
284
+ }
285
+ // 注意,配置项的index必须与上面的固定配置保持'顺序'
286
+ },
287
+ // "燃气表2":{
288
+ // "checkmust":true,
289
+ // "index":2,src
290
+ // "items":{
291
+ // "燃气表照片":{"index":1,"type":"picture"},
292
+ // "表品牌":{"index":2,"type":"string","readonly":true},
293
+ // "表号":{"index":3,"type":"string","readonly":true},
294
+ // "表封号":{"index":4,"type":"number","readonly":true},
295
+ // "表型号":{"index":5,"type":"string","readonly":true},
296
+ // "位置":{"index":6,"type":"string","readonly":true},
297
+ // "表底数":{"index":7,"type":"number","readonly":true},
298
+ // "累购气量":{"index":8,"type":"number","readonly":true},
299
+ // "累购金额":{"index":8,"type":"number","readonly":true}
300
+ // }
301
+ // }
302
+ },
303
+ // 维修项
304
+ isneedDate:'',
305
+ days: this.$appdata.getParam('截止天数'),
306
+ routeShow:true,
307
+ number:0,
308
+ shupingshow:false,
309
+ pipeline: {},
310
+ details: [],
311
+ ids: '',
312
+ savevalid: {
313
+ uservalid: false,
314
+ doorvalid: true,
315
+ changetable: false
316
+ },
317
+ doordetails: {},
318
+ devicedetails: {},
319
+ cookdetails: {},
320
+ componentName: 'safecheck-userinfo',
321
+ header:'客户信息',
322
+ tabs: [
323
+ // 参数全部设置成空,在ready时,等model处理好了,再添加
324
+ {
325
+ header: '客户信息',complete:'safecheck-userinfo',class: 'repair-info-class', props: null
326
+ },
327
+ {
328
+ header: '拍照签名',complete:'paper-feedback', class: 'outlay-class', props: null
329
+ }
330
+ ],
331
+ faultshow:{
332
+ number : 8
333
+ } // 控制 故障汇总 在 菜单里显示与否,
334
+ }
335
+ },
336
+ components: {
337
+ 'meter-reading': MeterReading,
338
+ },
339
+ computed: {
340
+ actionEnabled: {
341
+ get() {
342
+ return (this.role == 'inspect' && (this.item.f_last_check_state == '到访不遇' || this.item.f_last_check_state == '拒检' || this.item.f_approved == '不通过' )) || (this.role == 'inspect' && this.item.f_state !='已检' && this.item.f_complete !='已完成' && this.item.f_complete !='已传' )
343
+ }
344
+ }
345
+ },
346
+ methods: {
347
+ getDays(val){
348
+ console.log(val)
349
+ this.days = this.$appdata.getParam(val+'截止天数')
350
+ this.selectData.day = this.$appdata.getSingleValue(val+'默认截止天数') || 1
351
+ },
352
+ daychange(val) {
353
+ this.selectData.day = val
354
+ if (val == '其他') {
355
+ this.flag = false
356
+ } else {
357
+ if(val){
358
+ this.flag = true
359
+ this.selectData.f_finish_date = this.getSecondDay(val)
360
+ }else {
361
+ this.selectData.f_finish_date = this.getSecondDay(1)
362
+ }
363
+
364
+ }
365
+ },
366
+ getSecondDay(val){
367
+ let t = new Date();
368
+ let t1 = t.getTime()
369
+ val = val * 1000
370
+ t.setTime(t1 + val * 60 * 60 * 24);
371
+ let Y = t.getFullYear() + '-'
372
+ let M = (t.getMonth() + 1 < 10 ? '0' + (t.getMonth() + 1) : t.getMonth() + 1) + '-'
373
+ let D = (t.getDate() < 10 ? '0' + t.getDate() : t.getDate()) + ' '
374
+ let h = (t.getHours() < 10 ? '0' + t.getHours() : t.getHours()) + ':'
375
+ let m = (t.getMinutes() < 10 ? '0' + t.getMinutes() : t.getMinutes()) + ':'
376
+ let s = t.getSeconds() < 10 ? '0' + t.getSeconds() : t.getSeconds()
377
+ return Y + M + D + h + m + s
378
+ },
379
+ showmod(){
380
+ // this.saveNoclick()
381
+ let errString = this.errorVerify()
382
+ if (errString) {
383
+ console.log(errString)
384
+ console.log('Vue.android',Vue.android)
385
+ console.log('this.isUpload',this.isUpload)
386
+ if (Vue.android){
387
+ this.$showMessage(errString)
388
+ }
389
+ return
390
+ }
391
+ //清空转维修列表重新进行数据组织
392
+ this.repairDefect = {
393
+ result: '正常',
394
+ data: []
395
+ }
396
+ this.data.f_complete = '已完成'
397
+ this.$set('data.f_offsite_time', Util.toStandardTimeString())
398
+ this.assemblyCodata()
399
+ if(this.repairDefect.result=='正常'){
400
+ this.$showMessage("未发现有选择需要转维修的隐患,请检查填写的数据。如需转维修请在处理方式中选择 '转维修' !")
401
+ return
402
+ }
403
+ console.log("准备保存!")
404
+ this.disableTimer()
405
+ this.getEmp()
406
+ this.showModal2=true
407
+ },
408
+ cancel1(){
409
+ this.showModal2=false
410
+ this.selectData={
411
+ dispatchType:'派发给维修员',
412
+ f_repairman:'',
413
+ f_remarks:'',
414
+ f_repairtype:''
415
+ }
416
+ },
417
+ getSiteRes(obj) {
418
+ console.log('siteRes ---> ')
419
+ console.log(obj)
420
+ if(obj.resids[0]){
421
+ this.selectData.f_meetunit = obj.res.join('.')
422
+ this.selectData.f_reciever = obj.resids.join('.')
423
+ this.selectData.f_outlets = obj.res[obj.res.length - 1]
424
+ }else {
425
+ this.selectData.f_meetunit = ''
426
+ this.selectData.f_reciever = ''
427
+ this.selectData.f_outlets = ''
428
+ }
429
+ },
430
+ rectification(){
431
+ if(this.selectData.dispatchType){
432
+ if(this.selectData.dispatchType=='派发给站点'){
433
+ if(!this.selectData.f_reciever){
434
+ this.$showMessage('请选择部门!')
435
+ return
436
+ }
437
+ }else{
438
+ if(!this.selectData.f_repairman){
439
+ this.$showMessage('请选择维修员!')
440
+ return
441
+ }
442
+ }
443
+ }else {
444
+ this.$showMessage('请选择派发类型!')
445
+ return
446
+ }
447
+ if(!this.selectData.f_repairtype){
448
+ this.$showMessage('请选择报修类型!')
449
+ return
450
+ }
451
+ //关闭录音
452
+ this.closely(false) // 保存本地,不删除录音文件暂停录音
453
+ let act={}
454
+ let toRepair=''
455
+ if(this.selectData.dispatchType=='派发给站点'){
456
+ act={f_meetunit:this.selectData.f_meetunit,f_reciever:this.selectData.f_reciever,f_service_acitivity_type:'派单'}
457
+ toRepair=null
458
+ }else{
459
+ console.log('派发给维修员---------'+this.selectData.f_repairman)
460
+ act={f_meetunit:'',f_reciever:this.selectData.f_repairman,f_service_acitivity_type:'派单'}
461
+ toRepair='一级派单'
462
+ }
463
+ let repData={
464
+ toRepair:toRepair,
465
+ activity:act,
466
+ deps:Vue.user.deps,
467
+ depids:Vue.user.depids,
468
+ f_remarks:this.selectData.f_remarks,
469
+ f_repairtype:this.selectData.f_repairtype,
470
+ f_finish_date:this.selectData.f_finish_date,
471
+ dispatchType: this.selectData.dispatchType,
472
+ f_attendant: Vue.user.name,
473
+ loginUser:{name:Vue.user.name,ename:Vue.user.id,id:Vue.user.id},
474
+ }
475
+ this.rowCodata.istoRepair='转维修'
476
+ this.rowCodata.repData=repData
477
+ console.log("当前组装好的转维修数据--"+JSON.stringify(repData))
478
+ this.onlySave = false
479
+ this.save()
480
+ },
481
+ // 获取维修员
482
+ getEmp() {
483
+ this.repairers=[]
484
+ let per = {source: 'this.getRights().where(row.getType()==$user$).where(row.getAttributes().get($rolestr$).indexOf($维修员$) != -1))', userid: `${Vue.user.id}`}
485
+ let http = new HttpResetClass()
486
+ http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/search`, {data: per}, {resolveMsg: null, rejectMsg: null}).then((res) => {
487
+ res.data.forEach((user)=>{
488
+ this.repairers.push({label:user.name, value: user.name})
489
+ })
490
+ })
491
+ },
492
+ closely(isdelete){
493
+ try {
494
+ var startOrStopAudioClipStr;
495
+ if (isdelete===true) {
496
+ //tag
497
+ startOrStopAudioClipStr= HostApp.startOrStopAudioClip("----",'停止并删除录音') //停止并删除录音
498
+ }else {
499
+ //tag
500
+ startOrStopAudioClipStr= HostApp.startOrStopAudioClip("----",'停止录音') //停止录音
501
+ }
502
+ if (startOrStopAudioClipStr.code == 200) {
503
+ //tag
504
+ return true;
505
+ }else {
506
+ return false;
507
+ }
508
+ } catch (e) {
509
+ console.error("关闭录音方法异常")
510
+ console.error(e)
511
+ return false;
512
+ }
513
+ },
514
+ // 录音方法
515
+ record() {
516
+ //tag
517
+ if (this.role != 'inspect') {
518
+ if (this.data.f_recording1_path != '') {
519
+ window.location = "/rs/file"+this.data.f_recording1_path
520
+ }
521
+ } else {
522
+ //tag
523
+ let fileName
524
+ if (!this.data.f_recording1_path) {
525
+ fileName = Util.guid() + '.amr'
526
+ } else {
527
+ fileName = Util.getFileName(this.data.f_recording1_path)
528
+ }
529
+ //HostApp.__this__ = this
530
+ /*调用无限制录音模块*/
531
+ let startOrStopState = HostApp.startOrStopAudioClip(fileName,"开始录音")
532
+ //tag
533
+ if (startOrStopState.code == 200) {
534
+ this.data.f_recording1_path = "file:///storage/emulated/0/safecheck/" + fileName
535
+ //tag
536
+ return true;
537
+ }else {
538
+ return false;
539
+ }
540
+ }
541
+ },
542
+ saveNoclick() {
543
+ // 禁用点击事件
544
+ $("#savebut").addClass("noclickbut");
545
+ //tag
546
+
547
+ // 5秒后启用点击事件
548
+ setTimeout(function(){
549
+ $("#savebut").removeClass("noclickbut");
550
+ },5000);
551
+ },
552
+ timeSet(val){
553
+ if (!val){
554
+ return
555
+ }
556
+ let time =new Date(val).getTime()
557
+ let time2=new Date().getTime()
558
+ if (time2>time) {
559
+ return true
560
+ }
561
+ },
562
+ imgback(val,isheader){
563
+ if(val && this.routeShow && isheader){
564
+ return require('../../../assets/xiangxia1.png')
565
+ }else{
566
+ return require('../../../assets/xiangyou1.png')
567
+ }
568
+ },
569
+ changediv(val){
570
+ return val
571
+ },
572
+ // 选择tab
573
+ tabSelect (item,number) {
574
+ this.header = item.header
575
+ // 处理关闭/显示 内容
576
+ if(this.number == number && !this.routeShow ){
577
+ this.routeShow = true
578
+ }else if(this.number == number && this.routeShow){
579
+ this.routeShow = false
580
+ }else if(this.number != item.complete){
581
+ this.routeShow = true
582
+ }
583
+ this.number = number
584
+ this.componentName = item.complete
585
+ if(item.complete == 'safecheck-devices'){
586
+ if(item.header != '燃气表' && this.data['device'+item.number].length == 0){
587
+ this.data['device' + item.number].push({})
588
+ }
589
+ let idx=this.data['device' + item.number].length - 1
590
+ let itemprops = {
591
+ config:this.config,
592
+ device:this.devices[item.number-1],
593
+ idx:idx,
594
+ role:'inspect'
595
+ }
596
+ if(this.routeShow){
597
+ this.$goto(item.complete, itemprops, 'repair')
598
+ }
599
+ }else if (item.complete == 'meter-reading'){
600
+ if(this.routeShow){
601
+ this.$goto(item.complete, {service:this.data}, 'repair')
602
+ }
603
+ }else{
604
+ if(this.routeShow){
605
+ this.$goto(item.complete, {userinfo:this.data}, 'repair')
606
+ }
607
+ }
608
+ this.shupingshow = true
609
+ },
610
+ // 给组件添加参数
611
+ getImgPath() {
612
+ for (var i = 0; i < this.model.serviceacitivity[0].imgs.length; i++) {
613
+ this.ids += this.model.serviceacitivity[0].imgs[i].imgid + ','
614
+ }
615
+ this.ids = this.ids.substring(0, this.ids.length - 1)
616
+ if(this.ids){
617
+ this.getImgGen();
618
+ }
619
+ },
620
+ getImgGen(){
621
+ let http = new HttpResetClass()
622
+ http.load('POST','api/af-safecheck/sql/safe_singleTable_OrderBy', {data: {
623
+ items: '*',
624
+ tablename: 't_files',
625
+ condition: `id in (${this.ids})`,
626
+ orderitem: 'id'
627
+ }}, {resolveMsg: null, rejectMsg: null}).then((res) => {
628
+ for (let i = 0; i < res.data.length; i++) {
629
+ for (let j = 0; j < this.model.serviceacitivity[0].imgs.length; j++) {
630
+ if (res.data[i].id.toString() === this.model.serviceacitivity[0].imgs[j].imgid) {
631
+ this.model.serviceacitivity[0].imgs[j] = Object.assign({}, res.data[i], this.model.serviceacitivity[0].imgs[j])
632
+ }
633
+ }
634
+
635
+ }
636
+ })
637
+ },
638
+
639
+ sortDetails(){
640
+ for (let i = 0; i < this.details.length; i++) {
641
+ if (this.details[i].details.length) {
642
+ for (let j = 0; j < this.details[i].details.length; j++) {
643
+ if (this.details[i].details[j].f_type === 'a') {
644
+ this.doordetails = {details: this.details[i].details}
645
+ break
646
+ }
647
+ if (this.details[i].details[j].f_type === 'b') {
648
+ this.devicedetails = {details: this.details[i].details}
649
+ break
650
+ }
651
+ if (this.details[i].details[j].f_type === 'c') {
652
+ this.cookdetails = {details: this.details[i].details}
653
+ break
654
+ }
655
+ }
656
+ }
657
+ }
658
+ },
659
+ // 复制数据
660
+ back () {
661
+ let _this = this
662
+ if(this.issee){
663
+ _this.$back()
664
+ return
665
+ }
666
+ this.$showMessage('所填写内容将不可恢复!', ['confirm', 'cancel']).then((res) => {
667
+ if (res === 'confirm') {
668
+ this.closely()
669
+ _this.$back()
670
+ }
671
+ })
672
+ },
673
+ confirm(){
674
+ this.$dispatch('confirm')
675
+ },
676
+ tick() {
677
+ this.timer = null
678
+ this.data.f_offsite_time = Util.toStandardTimeString()
679
+ this.timer = window.setTimeout(this.tick, 1000)
680
+ },
681
+ getRepairState() {
682
+ let repaired = true
683
+ this.data.f_defects.forEach((defect) => {
684
+ repaired = repaired & (defect.f_ratification == '已处理')
685
+ })
686
+ return repaired
687
+ },
688
+ verifyRepairDefects() {
689
+ this.data.f_repair_date = Util.toStandardTimeString()
690
+ this.data.f_repaired = this.getRepairState() ? '已修' : '在修'
691
+ },
692
+ errorVerify() {
693
+ let hasError = this.verifyState()
694
+ if(hasError)
695
+ return hasError
696
+
697
+ if(this.data.f_entry_status != '入户' || this.data.f_usegas == '未用气')
698
+ return null
699
+ hasError = this.verifyUser()
700
+ if(hasError)
701
+ return hasError
702
+ hasError = this.verifyDevices()
703
+ if(hasError)
704
+ return hasError
705
+ hasError = this.verifyFeedback()
706
+ if(hasError)
707
+ return hasError
708
+ },
709
+ verifyState() {
710
+ if(Vue.android && this.data.f_usegas == '未用气' && (this.data.f_nongasuser_path == Vue.nopic || this.data.f_nongasuser_path == ''))
711
+ return '未使用天然气则必须拍照'
712
+ if(Vue.android && this.data.f_entry_status == '到访不遇' && this.notencountered && (this.data.f_noanswer_path == Vue.nopic || this.data.f_noanswer_path == ''))
713
+ return '到访不遇必须拍照'
714
+ if(Vue.android && this.data.f_entry_status == '拒检' && this.refuseinspection && (this.data.f_rejectcheck_path == Vue.nopic || this.data.f_rejectcheck_path == ''))
715
+ return '拒检必须拍照'
716
+ },
717
+ verifyUser() {
718
+ let prefix = '用户基本信息:'
719
+ if(Util.required(this.data.f_user_name))
720
+ return prefix + '用户名必须输入'
721
+ if (!this.data.f_user_phone){
722
+ return '请输入正确的电话号码'
723
+ }
724
+ if(!(/^\d{11}$/.test(this.data.f_user_phone.trim()))) {
725
+ return '请输入正确的电话号码'
726
+ }
727
+ // if(Util.required(this.data.f_residential_area))
728
+ // return prefix + '小区名称必须输入'
729
+ // if(Util.required(this.data.f_address))
730
+ // return prefix + '地址必须输入'
731
+ },
732
+ verifyDevices() {
733
+ for (let dev in this.config) {
734
+ if (this.config[dev].checkmust == true) {
735
+ let error = true
736
+ for(let device in this.data) {
737
+ if (device.startsWith("device")) {
738
+ for (let item in this.data[device]) {
739
+ if (this.data[device].length != 0 && this.data[device][item].f_device_type == dev) {
740
+ error = false
741
+ }
742
+ }
743
+ }
744
+ }
745
+ if (error) {
746
+ return "请检查" + dev
747
+ }
748
+ }
749
+ }
750
+
751
+ for (let dev in this.config) {
752
+ for(let device in this.data) {
753
+ if (device.startsWith("device")) {
754
+ for (let item in this.data[device]) {
755
+ //检查每一条安检结果
756
+ if (this.data[device].length != 0 && this.data[device][item].f_device_type == dev) {
757
+ for (let i in this.data[device][item].f_items) {
758
+ for (let it in this.config[dev].items) {
759
+ if (it == this.data[device][item].f_items[i].f_item_name) {
760
+ let check=false
761
+ if (!this.data[device][item].f_items[i].f_item_value){
762
+ check=true
763
+ }else if (Array.isArray(this.data[device][item].f_items[i].f_item_value)){
764
+ if (this.data[device][item].f_items[i].f_item_value.length==0){
765
+ check=true
766
+ }
767
+ }
768
+
769
+ if(this.config[dev].items[it].type=='picture' && this.config[dev].items[it].checkmust == true && !this.data[device][item].f_items[i].f_path){
770
+ return dev + (this.data[device].indexOf(this.data[device][item]) + 1) + this.data[device][item].f_items[i].f_item_name + "未检查"
771
+ }
772
+ if (this.config[dev].items[it].type !='picture' && this.config[dev].items[it].checkmust == true && check) {
773
+ return dev + (this.data[device].indexOf(this.data[device][item]) + 1) + this.data[device][item].f_items[i].f_item_name + "未检查"
774
+ }
775
+ }
776
+ }
777
+ //检查安检下拉结果
778
+ if (this.data[device][item].f_items[i].type == 'selector' || this.data[device][item].f_items[i].type == 'radio') {
779
+ if (this.data[device][item].f_items[i].f_is_defect == true && this.data[device][item].f_items[i].f_path == Vue.nopic) {
780
+ return dev + (this.data[device].indexOf(this.data[device][item]) + 1) + this.data[device][item].f_items[i].f_item_name + this.data[device][item].f_items[i].f_item_value + "选中必须拍照"
781
+ }
782
+ }
783
+ }
784
+ }
785
+ }
786
+ }
787
+ }
788
+ }
789
+ },
790
+ verifyFeedback() {
791
+ let prefix = '拍照签名:'
792
+ if(Vue.android && (!this.data.f_overall_imgs || this.data.f_overall_imgs.length < this.imgsnum) && this.data.f_entry_status == '入户')
793
+ return prefix + `必须有${this.imgsnum}安检总体照片`
794
+ /*if(Vue.android && (!this.data.f_sign_path || this.data.f_sign_path.length == 0) && this.data.f_entry_status == '入户')
795
+ return prefix + '必须有用户签名'*/
796
+ if(Vue.android && this.data.f_defect_notified && this.data.f_notified_path == Vue.nopic)
797
+ return prefix + '下发安检通知书则必须给通知书拍照'
798
+ if(Vue.android && this.data.f_blacklist && this.data.f_blocking_cause=='')
799
+ return prefix + '请填写拉黑原因'
800
+ if(!this.data.f_client_evaluation && this.data.f_entry_status == '入户')
801
+ return prefix + '请选择服务评价'
802
+ },
803
+ getAllDefect() {
804
+ let checkResults = {
805
+ result: '正常',
806
+ data: []
807
+ }
808
+ let value = ''
809
+ let codata = JSON.parse(JSON.stringify(this.data))
810
+ codata.f_devices = []
811
+ this.f_devices = []
812
+ for (let device in codata) {
813
+ let f_device_type
814
+ if (device.startsWith("device")) {
815
+ let hasOther = ''
816
+ let otherValue = null
817
+ for (let item in codata[device]) {
818
+ if(typeof codata[device][item]=='function'){
819
+ continue
820
+ }
821
+ codata[device][item].f_create_time = Util.toStandardTimeString()
822
+ if (codata[device].length > 1) {
823
+ let j = Number.parseInt(item) + 1
824
+ f_device_type = `${codata[device][item].f_device_type}${j}`
825
+ } else {
826
+ f_device_type = codata[device][item].f_device_type
827
+ }
828
+ if(item == 'sum' || item == 'removeEmpty'){
829
+ continue
830
+ }
831
+ for (let i = 0; i < codata[device][item].f_items.length ; i++) {
832
+ //tag
833
+ if(i == 'sum' || i == 'removeEmpty'){
834
+ continue
835
+ }
836
+ var items = codata[device][item].f_items[i]
837
+ items.f_create_time = Util.toStandardTimeString()
838
+ items.f_item_lists = []
839
+ if (items.type == 'selector') {
840
+ items.selected = []
841
+ } else if (items.type == 'inputSelector') {
842
+ items.selected = ''
843
+ }
844
+ //遍历配置项 将所选隐患项的配置信息放入保存的数据中
845
+ let f_is_defect //是否是隐患
846
+ let f_defect_level //是否是隐患
847
+ let f_item_name = items.f_item_name
848
+ let f_item_value
849
+ if (items.type == 'selector' || items.type == 'checkbox' || items.type == 'radio') {
850
+ for (let i in items.f_item_value) {
851
+ if(typeof items.f_item_value[i]=='function'){
852
+ continue
853
+ }
854
+ let configItems = this.config[codata[device][item].f_device_type].items[f_item_name]
855
+ //tag)
856
+ for (let k in configItems.options) {
857
+ if(typeof configItems.options[k]=='function'){
858
+ continue
859
+ }
860
+ //tag)
861
+ if (items.f_item_value[i] === configItems.options[k].data) {
862
+
863
+ f_is_defect = configItems.options[k].isdefect
864
+ f_item_value = items.f_item_value[i]
865
+ f_defect_level = configItems.options[k].level
866
+ if (f_is_defect) {
867
+ if (checkResults.result !== '有隐患') {
868
+ checkResults.result = '有隐患'
869
+ }
870
+ console.log('items'+items)
871
+ if(items.f_deal_dispose=='报修'){
872
+ console.log("检测到需要转维修++++++++++++")
873
+ this.repairDefect.result='未处理'
874
+ this.repairDefect.data.push(`${f_item_name} : ${f_item_value}`)
875
+ }
876
+ if (!this.checkResult.hasOwnProperty(f_device_type+'-'+f_item_name)) {
877
+ this.checkResult[f_device_type+'-'+f_item_name] = []
878
+ }
879
+ this.checkResult[f_device_type+'-'+f_item_name].push(f_item_value)
880
+
881
+ }
882
+
883
+ let items_list = {
884
+ f_is_defect: f_is_defect,
885
+ f_item_value: f_item_value,
886
+ f_defect_level: f_defect_level,
887
+ f_is_eliminate: null,
888
+ f_create_time: Util.toStandardTimeString()
889
+ }
890
+ if (!items.f_item_lists) {
891
+ items.f_item_lists = []
892
+ if (JSON.stringify(items_list) !== '{}') {
893
+ items.f_item_lists.push(items_list)
894
+ }
895
+ } else {
896
+ if (JSON.stringify(items_list) !== '{}') {
897
+ items.f_item_lists.push(items_list)
898
+ }
899
+ }
900
+ }
901
+ }
902
+ }
903
+ } else {
904
+ let configItems = this.config[codata[device][item].f_device_type].items[items.f_item_name]
905
+ f_is_defect = items.f_is_defect
906
+ f_defect_level = items.level
907
+ f_item_value = items.f_item_value
908
+ let items_list = {
909
+ f_is_defect: f_is_defect,
910
+ f_item_value: f_item_value,
911
+ f_defect_level: f_defect_level,
912
+ f_create_time: Util.toStandardTimeString()
913
+ }
914
+ if (f_is_defect && f_item_value) {
915
+ items.f_is_defect = true
916
+ if (checkResults.result !== '有隐患') {
917
+ checkResults.result = '有隐患'
918
+ }
919
+ if (!this.checkResult.hasOwnProperty(items.f_item_name)) {
920
+ this.checkResult[items.f_item_name] = []
921
+ }
922
+
923
+ this.checkResult[items.f_item_name].push(f_item_value)
924
+
925
+ }
926
+ if (!items.f_item_lists) {
927
+ items.f_item_lists = []
928
+ if (JSON.stringify(items_list) != '{}') {
929
+ items.f_item_lists.push(items_list)
930
+ }
931
+ } else {
932
+ if (JSON.stringify(items_list) != '{}') {
933
+ items.f_item_lists.push(items_list)
934
+ }
935
+ }
936
+ }
937
+ if (hasOther !== '' && otherValue !== null) {
938
+ this.checkResult[hasOther].push(otherValue)
939
+ hasOther = ''
940
+ otherValue = null
941
+ }
942
+ items.f_item_value = ''
943
+ }
944
+ this.f_devices.push(codata[device][item])
945
+ }
946
+ }
947
+ }
948
+ if (this.checkResult) {
949
+ for (let key in this.checkResult) {
950
+ if(typeof this.checkResult[key]=='function'){
951
+ continue
952
+ }
953
+ // 上次安检结果数据组织
954
+ let temp = {}
955
+ temp[key] = this.checkResult[key].join(',')
956
+ checkResults.data.push(temp)
957
+ }
958
+ this.checkResult = {}
959
+ }
960
+ if (checkResults.data.length > 0) {
961
+ let msg = ''
962
+ for (let a = 0; a < checkResults.data.length; a++) {
963
+ for (let datumKey in checkResults.data[a]) {
964
+ msg += datumKey + ':' + checkResults.data[a][datumKey] + ';'
965
+ }
966
+ }
967
+ this.data.f_defect_text = msg
968
+ codata.f_defect_text = msg
969
+ }
970
+ codata.f_defect_content = JSON.stringify(checkResults)
971
+ this.data.f_defect_content = JSON.stringify(checkResults)
972
+ return codata
973
+ },
974
+ uploadCheckPaper(){
975
+ this.saveNoclick()
976
+ this.closely(false) // 保存本地,不删除录音文件停止录音
977
+ let errString = this.errorVerify()
978
+ if (errString) {
979
+ if (Vue.android){
980
+ this.$showMessage(errString)
981
+ }
982
+ return
983
+ } else {
984
+ this.$set('data.f_offsite_time', Util.toStandardTimeString())
985
+ this.$set('data.f_upload_time', Util.toStandardTimeString())
986
+ this.$set('data.f_upload_date', Util.toStandardTimeString())
987
+ this.data.f_complete = '已完成'
988
+ this.disableTimer()
989
+ }
990
+ this.onlySave = false
991
+ this.assemblyCodata()
992
+ if (this.repairDefect.result != '正常') {
993
+ return this.$showMessage('有隐患的处理方式为转维修,请点击转维修')
994
+ }
995
+ this.save()
996
+
997
+ },
998
+ //将数据组装提出
999
+ assemblyCodata(){
1000
+ let codata = this.getAllDefect()
1001
+ console.log(`codata类型 开始组装codeta数据-->${typeof codata}`)
1002
+ console.log(`codata内容-->${JSON.stringify(codata)}`)
1003
+ for (let key in codata) {
1004
+ if (key.startsWith("device")) {
1005
+ console.log('this.data.' + key + JSON.stringify(codata[key]))
1006
+ codata[key] = []
1007
+ }
1008
+ }
1009
+ codata.f_devices = this.f_devices
1010
+ this.rowCodata=codata
1011
+ },
1012
+ save(type) {
1013
+ if (type == 'temp' || type == 'finish') {
1014
+ this.assemblyCodata()
1015
+ }
1016
+ //禁用事件
1017
+ this.saveNoclick()
1018
+ if(type == 'temp'){
1019
+ this.data.f_complete = '未完成'
1020
+ this.rowCodata.f_complete = '未完成'
1021
+ // 关闭录音方法
1022
+ this.closely(true) //临时保存,删除录音文件并暂停录音
1023
+ this.disableTimer()
1024
+ }else {
1025
+ // 关闭录音方法
1026
+ this.closely(false) // 保存本地,不删除录音文件暂停录音
1027
+ let errString = this.errorVerify()
1028
+ if (errString) {
1029
+ if (Vue.android){
1030
+ this.$showMessage(errString)
1031
+ }
1032
+ return
1033
+ } else {
1034
+ this.data.f_complete = '已完成'
1035
+ this.rowCodata.f_complete = '已完成'
1036
+ this.$set('data.f_offsite_time', Util.toStandardTimeString())
1037
+ this.$set('rowCodata.f_offsite_time', Util.toStandardTimeString())
1038
+ this.disableTimer()
1039
+ }
1040
+ }
1041
+ if(this.data.f_blacklist!='是'){
1042
+ delete this.data.f_blocking_cause
1043
+ }
1044
+ if (this.data.f_entry_status == '入户') {
1045
+ this.data.f_rejectchecks_path = []
1046
+ this.data.f_rejectcheck_path = null
1047
+ this.data.f_rejectcheck1_path = null
1048
+ this.data.f_rejectcheck2_path = null
1049
+ this.data.f_noanswers_path=[]
1050
+ this.data.f_noanswer_path = null
1051
+ this.data.f_noanswer1_path = null
1052
+ this.data.f_noanswer2_path = null
1053
+ }else if (this.data.f_entry_status == '到访不遇') {
1054
+ this.data.f_rejectchecks_path = []
1055
+ this.data.f_rejectcheck_path = null
1056
+ this.data.f_rejectcheck1_path = null
1057
+ this.data.f_rejectcheck2_path = null
1058
+ }else if (this.data.f_entry_status == '拒检') {
1059
+ this.data.f_noanswers_path=[]
1060
+ this.data.f_noanswer_path = null
1061
+ this.data.f_noanswer1_path = null
1062
+ this.data.f_noanswer2_path = null
1063
+ }
1064
+ let codata = this.rowCodata
1065
+ for (let key in codata) {
1066
+ if (key.startsWith("device")) {
1067
+ codata[key] = []
1068
+ }
1069
+ }
1070
+ codata.f_complete = this.data.f_complete
1071
+ if (Vue.android) {
1072
+ let value = this.$androidUtil.path({
1073
+ alias: 'getUserinfomation',
1074
+ data: {condition: "f_userinfoid = '" + this.item.f_userinfoid + "' and f_no_checkplan in ('无计划安检','复检')"}
1075
+ })
1076
+ if ((this.item.f_no_checkplan == '无计划安检' || this.item.f_no_checkplan == '复检') && this.item.f_no_checkplan != '打回') {
1077
+ codata.f_devices = this.f_devices
1078
+ if (this.rowCodata && this.rowCodata.istoRepair=='转维修') {
1079
+ this.rowCodata = Object.assign({},this.rowCodata,codata)
1080
+ } else {
1081
+ this.rowCodata = codata
1082
+ }
1083
+ let param = {
1084
+ f_check_item_id: this.data.f_check_item_id,
1085
+ f_checker_id: this.data.f_checker_id,
1086
+ f_upload_state: '未传',
1087
+ row: this.rowCodata
1088
+ }
1089
+ let paramStr = JSON.stringify(param)
1090
+ // 多长截断一次
1091
+ let subLength = 800
1092
+ for (let i = 0; i < paramStr.length; i += subLength) {
1093
+ HostApp.param_cache(paramStr.slice(i, i + subLength))
1094
+ }
1095
+ HostApp.__this__ = this
1096
+ HostApp.syncLogic({
1097
+ // logic别名,key必须为logic
1098
+ 'logic': 'SafeSaveNoPaper',
1099
+ // 回调执行方法名,key必须为callback
1100
+ 'callback': 'javascript:HostApp.__this__.saveCallBack()',
1101
+ // 固定key,代表是否将logic执行结果作为参数传入回调方法,1代表true,0代表false,
1102
+ // 执行回调方法传入key为backresult
1103
+ // 如需额外拼接参数,写在logic返回值的params,例如xxlogic返回:{"params": "success"}
1104
+ 'backresult': 1
1105
+ })
1106
+ } else {
1107
+ codata.f_devices = this.f_devices
1108
+ if (this.rowCodata && this.rowCodata.istoRepair=='转维修') {
1109
+ this.rowCodata = Object.assign({},this.rowCodata,codata)
1110
+ } else {
1111
+ this.rowCodata = codata
1112
+ }
1113
+ let param = {
1114
+ f_check_item_id: this.data.f_check_item_id,
1115
+ f_checker_id: this.data.f_checker_id,
1116
+ row: this.rowCodata
1117
+ }
1118
+ let paramStr = JSON.stringify(param)
1119
+ // 多长截断一次
1120
+ let subLength = 800
1121
+ for (let i = 0; i < paramStr.length; i += subLength) {
1122
+ HostApp.param_cache(paramStr.slice(i, i + subLength))
1123
+ }
1124
+ HostApp.__this__ = this
1125
+ HostApp.syncLogic({
1126
+ // logic别名,key必须为logic
1127
+ 'logic': '保存安检单信息',
1128
+ // 回调执行方法名,key必须为callback
1129
+ 'callback': 'javascript:HostApp.__this__.saveCallBack()',
1130
+ // 固定key,代表是否将logic执行结果作为参数传入回调方法,1代表true,0代表false,
1131
+ // 执行回调方法传入key为backresult
1132
+ // 如需额外拼接参数,写在logic返回值的params,例如xxlogic返回:{"params": "success"}
1133
+ 'backresult': 1
1134
+ })
1135
+ }
1136
+
1137
+ } else {
1138
+ let value = this.$androidUtil.path({
1139
+ alias: 'getUserinfomation',
1140
+ data: {condition: "f_userinfoid = '" + this.item.f_userinfoid + "' and f_no_checkplan in ('无计划安检','复检')"}
1141
+ })
1142
+ if (this.rowCodata && this.rowCodata.istoRepair=='转维修') {
1143
+ this.rowCodata = Object.assign({},this.rowCodata,codata)
1144
+ } else {
1145
+ this.rowCodata = codata
1146
+ }
1147
+ if ((this.item.f_no_checkplan == '无计划安检' || this.item.f_no_checkplan == '复检') && value.data.length == 0 && this.item.f_no_checkplan != '打回') {
1148
+ this.$androidUtil.bzLogic('SafeSaveNoPaper', {
1149
+ f_check_item_id: this.data.f_check_item_id,
1150
+ f_checker_id: this.data.f_checker_id,
1151
+ f_upload_state: '未传',
1152
+ row: this.rowCodata
1153
+ }).then((res) => {
1154
+ if (res.data.code == 200) {
1155
+ //保存devices
1156
+ this.$androidUtil.bzLogic('getPaperInfo', {
1157
+ f_check_item_id: this.data.f_check_item_id
1158
+ }).then((res) => {
1159
+ if (res.data.code == 200) {
1160
+ let f_paper_id = res.data.data[0].id
1161
+ for (let device of this.f_devices) {
1162
+ device.f_paper_id = f_paper_id
1163
+ this.$androidUtil.bzLogic('saveDevice', {
1164
+ row: device
1165
+ }).then((ret) => {
1166
+ if (ret.code != 200) {
1167
+ //TODO 失败后处理
1168
+ this.$showMessage("保存失败!")
1169
+ return false
1170
+ }
1171
+ })
1172
+ }
1173
+ }
1174
+ })
1175
+ this.$showMessage('保存成功!')
1176
+ return true
1177
+ } else {
1178
+ this.$showMessage("保存失败!")
1179
+ return false
1180
+ }
1181
+ })
1182
+ }
1183
+ else {
1184
+ this.$androidUtil.bzLogic('保存安检单信息', {
1185
+ f_check_item_id: this.data.f_check_item_id,
1186
+ f_checker_id: this.data.f_checker_id,
1187
+ row: this.rowCodata
1188
+ }).then((res) => {
1189
+ if (res.data.code == 200) {
1190
+ //保存devices
1191
+ this.$androidUtil.bzLogic('getPaperInfo', {
1192
+ f_check_item_id: this.data.f_check_item_id
1193
+ }).then((res) => {
1194
+ if (res.data.code == 200) {
1195
+
1196
+ let f_paper_id = res.data.data[0].id
1197
+ for (let device of this.f_devices) {
1198
+ device.f_paper_id = f_paper_id
1199
+ this.$androidUtil.bzLogic('saveDevice', {
1200
+ row: device
1201
+ }).then((ret) => {
1202
+ if (ret.code != 200) {
1203
+ //TODO 失败后处理
1204
+ this.$showMessage("保存失败!")
1205
+ return false
1206
+ }
1207
+ })
1208
+ }
1209
+ }
1210
+ })
1211
+ this.$showMessage('保存成功!')
1212
+ return true
1213
+ } else {
1214
+ this.$showMessage("保存失败!")
1215
+ return false
1216
+ }
1217
+ })
1218
+ }
1219
+ }
1220
+ },
1221
+ runSyncLogic(logic,callback,backresult){
1222
+ HostApp.runSyncLogic({
1223
+ // logic别名,key必须为logic
1224
+ 'logic': logic,
1225
+ // 回调执行方法名,key必须为callback
1226
+ 'callback': callback,
1227
+ // 固定key,代表是否将logic执行结果作为参数传入回调方法,1代表true,0代表false,
1228
+ // 执行回调方法传入key为backresult
1229
+ // 如需额外拼接参数,写在logic返回值的params,例如xxlogic返回:{"params": "success"}
1230
+ 'backresult':backresult
1231
+ })
1232
+ },
1233
+ logicWithHint(logic,data,callback,backresult){
1234
+ HostApp.logicWithHint({
1235
+ // logic别名,key必须为logic
1236
+ 'logic': logic,
1237
+ // 回调执行方法名,key必须为callback
1238
+ 'callback': callback,
1239
+ // logic执行需要的业务参数
1240
+ 'data': data,
1241
+ // 固定key,代表是否将logic执行结果作为参数传入回调方法,1代表true,0代表false,
1242
+ // 执行回调方法传入key为backresult
1243
+ // 如需额外拼接参数,写在logic返回值的params,例如xxlogic返回:{"params": "success"}
1244
+ 'backresult':backresult
1245
+ })
1246
+ },
1247
+ saveCallBack(jo){
1248
+ if(jo.state == 'ok'){
1249
+ let res = JSON.parse(jo.result)
1250
+ if(res.code == 200){
1251
+ if(!this.onlySave){
1252
+ let codata = this.getAllDefect()
1253
+ //获取微信推送内容
1254
+ // let WxResult = this.getWeixin(codata)
1255
+ let haslivedispose = this.$androidUtil.bzLogic('getLiveDispose', {
1256
+ f_check_item_id: this.data.f_check_item_id
1257
+ })
1258
+ //如果是转维修上传,则不做校验,上传完成后自动转维修
1259
+ if(!this.isToRepair){
1260
+ if(haslivedispose.data.length > 0 && (this.livedispose == 'true' || this.livedispose == true)){
1261
+ if(!this.isSafeCheckToRepair){
1262
+
1263
+ }
1264
+ }
1265
+ }
1266
+ for (let key in codata){
1267
+ if(key.startsWith("device")){
1268
+ codata[key] = []
1269
+ }
1270
+ }
1271
+ codata.f_devices = this.f_devices
1272
+ if (this.rowCodata && this.rowCodata.istoRepair=='转维修') {
1273
+ this.rowCodata = Object.assign({},this.rowCodata,codata)
1274
+ } else {
1275
+ this.rowCodata = codata
1276
+ }
1277
+ let param = {
1278
+ f_check_item_id: this.data.f_check_item_id,
1279
+ f_checker_id: this.data.f_checker_id,
1280
+ row: this.rowCodata
1281
+ }
1282
+ let paramStr = JSON.stringify(param)
1283
+ // 多长截断一次
1284
+ let subLength = 800
1285
+ for (let i = 0; i < paramStr.length; i += subLength) {
1286
+ HostApp.param_cache(paramStr.slice(i, i + subLength))
1287
+ }
1288
+ HostApp.__this__ = this
1289
+ HostApp.syncLogic({
1290
+ // logic别名,key必须为logic
1291
+ 'logic': '上传安检信息',
1292
+ // 回调执行方法名,key必须为callback
1293
+ 'callback': 'javascript:HostApp.__this__.uploadCallBack()',
1294
+ // 固定key,代表是否将logic执行结果作为参数传入回调方法,1代表true,0代表false,
1295
+ // 执行回调方法传入key为backresult
1296
+ // 如需额外拼接参数,写在logic返回值的params,例如xxlogic返回:{"params": "success"}
1297
+ 'backresult': 1
1298
+ })
1299
+ }else{
1300
+ this.$showMessage('保存成功!')
1301
+ if(this.clickBack){
1302
+ this.isStrat = false
1303
+ this.$dispatch('confirm')
1304
+ }
1305
+ }
1306
+ }else{
1307
+ this.$showMessage('保存失败!')
1308
+ return
1309
+ }
1310
+ }else{
1311
+ this.$showMessage('服务器内部错误,保存失败!')
1312
+ return
1313
+ }
1314
+ },
1315
+ uploadCallBack(jo){
1316
+ //获取微信推送路径
1317
+ let url = ""
1318
+ if(Vue.config.safecheck != undefined) {
1319
+ if (Vue.config.safecheck.ApproveConfig != undefined) {
1320
+ if (Vue.config.safecheck.ApproveConfig.weixinurl != undefined) {
1321
+ url = Vue.config.safecheck.ApproveConfig.weixinurl
1322
+ }
1323
+ }
1324
+ }
1325
+ if(jo.state == 'ok'){
1326
+ let res = JSON.parse(jo.result)
1327
+ if(res.code == 200){
1328
+ this.$set('data.f_paper_id', res.id)
1329
+ this.isStrat=false
1330
+ if(url != ""){
1331
+ this.$resetpost(`${url}`,{data:WxResult})
1332
+ }
1333
+ // 预约安检回更预约安检单
1334
+ if(this.data.isupdateplanitem == 'true' && this.data.f_SafeToRepair_id){
1335
+ this.$resetpost(`${this.$androidUtil.getProxyUrl()}/api/af-safecheck/logic/ReturnSafeService`, {data:{
1336
+ f_paper_id:this.data.f_paper_id,
1337
+ f_service_id:this.data.f_SafeToRepair_id
1338
+ }
1339
+ }).then((ret) => {
1340
+ if(ret.data && ret.data.code == 200){
1341
+ console.log('预约安检回更成功')
1342
+ }
1343
+ })
1344
+ }
1345
+ if(this.isToRepair){
1346
+ for (let device in this.data){
1347
+ if(device.startsWith("device")){
1348
+ this.data[device] = []
1349
+ if(res.data.length > 0){
1350
+ for(let i in res.data[0].f_devices){
1351
+ if(this.data[device].length > 0){
1352
+ if(this.data[device][0].f_device_type == res.data[0].f_devices[i].f_device_type){
1353
+ this.data[device].push(res.data[0].f_devices[i])
1354
+ res.data[0].f_devices.splice(i,1)
1355
+ }
1356
+ }else{
1357
+ this.data[device].push(res.data[0].f_devices[i])
1358
+ res.data[0].f_devices.splice(i,1)
1359
+ }
1360
+ }
1361
+ }
1362
+ }
1363
+ }
1364
+ this.todo()
1365
+ }else{
1366
+ this.$showMessage('安检上传成功!')
1367
+ if (this.data.f_userinfoid){
1368
+ let http = new HttpResetClass()
1369
+ http.load('POST', `${this.$androidUtil.getProxyUrl()}/af-telephone/rs/sql/tel_singleTable_OrderBy`, {
1370
+ data: {
1371
+ items: 'count(0) as num',
1372
+ tablename: 't_userfiles a left join t_userinfo b on a.f_userinfo_id = b.f_userinfo_id',
1373
+ condition: `a.f_userinfo_id = '${this.item.f_userinfoid}' and a.f_meter_classify != '物联网表' and a.f_table_state = '正常' and b.f_user_state='正常'`,
1374
+ orderitem: '1'
1375
+ }
1376
+ }, {resolveMsg: null, rejectMsg: null}).then((response) => {
1377
+ if (response.data[0].num > 0 ){
1378
+ let _this = this
1379
+ this.$showMessage(`是否前往抄表`, ['confirm', 'cancel']).then((res) => {
1380
+ if (res === 'confirm') {
1381
+
1382
+ let http = new HttpResetClass()
1383
+ http.load('POST', `${this.$androidUtil.getProxyUrl()}/af-readmeter/sql/PcHandInfo`, {data:{
1384
+ sort: `asc`,
1385
+ condition:`f_userinfo_id = '${_this.data.f_userinfoid}'`
1386
+ }
1387
+ }, {resolveMsg: null, rejectMsg: null}).then((res) => {
1388
+ let param = {}
1389
+ param = res.data[0]
1390
+ param.f_new_tablebase = _this.data.f_new_tablebase
1391
+ param.tabname="在线抄表"
1392
+ var pardate = {
1393
+ _this:this,
1394
+ tittle:'抄表单信息',
1395
+ safe:false
1396
+ }
1397
+ this.$dispatch('gotoson',pardate)
1398
+ this.$goto('phone-hand-edit', {data:param,source:'抄表',type:'save'}, 'self', function (){
1399
+ _this.$dispatch('confirm')
1400
+ }
1401
+ )
1402
+ })
1403
+ }else {
1404
+ this.$dispatch('tijiao')
1405
+ }
1406
+ })
1407
+ }
1408
+ })
1409
+ }
1410
+ }
1411
+ }else if(res.code == 309){
1412
+ this.$showMessage('该安检单已作废!')
1413
+ this.$dispatch('confirm')
1414
+ }else if(res.code == 710){
1415
+ this.$showMessage('上传照片失败,请检查网络是否正常!'+res.msg)
1416
+ this.onlySave = true
1417
+ return
1418
+ }else if(res.code == 711){
1419
+ this.$showMessage('该安检单已被管理员调整,请联系管理员!')
1420
+ this.onlySave = true
1421
+ return
1422
+ }else if(res.code == 712){
1423
+ this.$showMessage('网络异常,请缓存后重新尝试上传,多次上传失败请联系管理员!')
1424
+ this.onlySave = true
1425
+ return
1426
+ }
1427
+ else{
1428
+ this.$showMessage('上传失败!')
1429
+ }
1430
+ }else {
1431
+ this.$showMessage('网络异常,上传失败!')
1432
+ }
1433
+ this.onlySave = true
1434
+ },
1435
+ safecheckToRepairCallBack(jo){
1436
+ //获取微信推送路径
1437
+ if(jo.state == 'ok'){
1438
+ let res = JSON.parse(jo.result)
1439
+ if(res.code == 200){
1440
+ if(res.data.code == 200){
1441
+ this.$showMessage('上传并转维修成功!')
1442
+ }else{
1443
+ this.$showMessage('上传并转维修成功,回写安检单失败!')
1444
+ }
1445
+ this.$dispatch('confirm')
1446
+ }else{
1447
+ this.$showMessage('上传失败!')
1448
+ this.onlySave = true
1449
+ }
1450
+ }else{
1451
+ this.$showMessage('网络异常,上传失败!')
1452
+ this.onlySave = true
1453
+ }
1454
+ },
1455
+ todo(){
1456
+ let gen = getRepairParam(this)
1457
+ co(gen)
1458
+ },
1459
+ undo(){
1460
+ this.showCheckToRepair = !this.showCheckToRepair
1461
+ this.model.serviceacitivity[0].f_reciever = ''
1462
+ this.model.serviceacitivity[0].f_meetunit = ''
1463
+ this.model.f_repairtype = ''
1464
+ this.meading = '转站点'
1465
+ },
1466
+ disableTimer() {
1467
+ if(this.timer) {
1468
+ window.clearTimeout(this.timer)
1469
+ this.timer = null
1470
+ }
1471
+ },
1472
+ loaded(paper) {
1473
+ if(!paper.hasOwnProperty('id')) {
1474
+ this.$showMessage("该安检单在手机上已经不存在,可能是卸载过程序。可以进入重新安检,或返回安检计划。")
1475
+ this.init()
1476
+ } else {
1477
+ Util.booleanFilter(paper)
1478
+ HostApp.__this__.$set('data', paper)
1479
+ HostApp.__this__.$goto('safecheck-userinfo', {}, 'paper-router')
1480
+ // 如果打回重检则重新计时
1481
+ if(HostApp.__this__.role == 'inspect'
1482
+ && HostApp.__this__.data.f_approved
1483
+ && HostApp.__this__.data.f_approved == '打回') {
1484
+ HostApp.__this__.data.f_onsite_time = Util.toStandardTimeString()
1485
+ HostApp.__this__.tick()
1486
+ }
1487
+ }
1488
+ HostApp.__callback__ = null
1489
+ HostApp.__this__ = null
1490
+ },
1491
+ S4() {
1492
+ return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
1493
+ },
1494
+ extend(initalObj, finalObj) {
1495
+ var obj = finalObj || {};
1496
+ for (var i in initalObj) {
1497
+ var prop = initalObj[i];
1498
+
1499
+ // 避免相互引用对象导致死循环,如initalObj.a = initalObj的情况
1500
+ if (prop === obj) {
1501
+ continue;
1502
+ }
1503
+
1504
+ if (typeof prop === 'object') {
1505
+ if (obj[i]) {
1506
+ this.extend(obj[i], prop)
1507
+ } else {
1508
+ obj[i] = prop;
1509
+ }
1510
+ }
1511
+ }
1512
+ return obj;
1513
+ },
1514
+ putDevices() {
1515
+ this.$set('data.approve', "true")
1516
+ this.$set('data.writeback', "false")
1517
+ if (Vue.config.safecheck != undefined) {
1518
+ if (Vue.config.safecheck.ApproveConfig != undefined) {
1519
+ if (Vue.config.safecheck.ApproveConfig.approve != undefined) {
1520
+ this.$set('data.approve', Vue.config.safecheck.ApproveConfig.approve)
1521
+ }
1522
+ if (Vue.config.safecheck.ApproveConfig.writeback != undefined) {
1523
+ this.$set('data.writeback', Vue.config.safecheck.ApproveConfig.writeback)
1524
+ }
1525
+ if (Vue.config.safecheck.ApproveConfig.livedispose != undefined) {
1526
+ this.livedispose = Vue.config.safecheck.ApproveConfig.livedispose
1527
+ }
1528
+ if (Vue.config.safecheck.ApproveConfig.showtorepair) {
1529
+ this.show_torepair = Vue.config.safecheck.ApproveConfig.showtorepair
1530
+ }
1531
+ if (Vue.config.safecheck.ApproveConfig.notencountered != undefined){
1532
+ this.notencountered = Vue.config.safecheck.ApproveConfig.notencountered
1533
+ }
1534
+ if (Vue.config.safecheck.ApproveConfig.refuseinspection != undefined){
1535
+ this.refuseinspection = Vue.config.safecheck.ApproveConfig.refuseinspection
1536
+ }
1537
+ }
1538
+ if(this.item.f_user_type == '非民用'){
1539
+ // 非民用
1540
+ if (Vue.config.safecheck.DevicesSetConfig != undefined){
1541
+ if(this.item.f_safecheck_type == undefined || this.item.f_safecheck_type == '' || Vue.config.safecheck.SafecheckType == undefined) {
1542
+ this.config = this.extend(this.config, Vue.config.safecheck.DevicesSetConfig)
1543
+ }else{
1544
+ this.config = this.extend(this.config, Vue.config.safecheck[Vue.config.safecheck.SafecheckType[this.item.f_safecheck_type][this.item.f_user_type]])
1545
+ }
1546
+ }
1547
+
1548
+ }else{
1549
+ // 民用户
1550
+ if (Vue.config.safecheck.DevicesConfig != undefined){
1551
+ if(this.item.f_safecheck_type == undefined || this.item.f_safecheck_type == '' || Vue.config.safecheck.SafecheckType == undefined) {
1552
+ this.config = this.extend(this.config, Vue.config.safecheck.DevicesConfig)
1553
+ }else{
1554
+ this.config = this.extend(this.config, Vue.config.safecheck[Vue.config.safecheck.SafecheckType[this.item.f_safecheck_type][this.item.f_user_type?this.item.f_user_type:'民用']])
1555
+ }
1556
+ }
1557
+ }
1558
+
1559
+ }
1560
+ // 预留设备项位置
1561
+ for (let i in this.config) {
1562
+ this.tabs.splice(1,0,null)
1563
+ }
1564
+ //遍历安检项配置
1565
+ for (let i in this.config) {
1566
+ //取得安检项索引值
1567
+ let n = this.config[i].index
1568
+ this.devices[n - 1] = {device: i, n: n, checkmust: this.config[i].checkmust}
1569
+ this.$set('data.' + 'device' + n, [])
1570
+ this.tabs[n] = {
1571
+ header: i,
1572
+ complete: 'safecheck-devices',
1573
+ class: 'repair-details-class',
1574
+ number: n
1575
+ }
1576
+
1577
+ if(this.config[i].quantity && this.config[i].quantity >0){
1578
+ let items = []
1579
+ for (let it in this.config[i].items) {
1580
+ //赋值下拉选项
1581
+ if (this.config[i].items[it].type == 'selector') {
1582
+ for (let op in this.config[i].items[it].options) {
1583
+ if (this.config[i].items[it].options[op].isdefault == true) {
1584
+ items.push({
1585
+ f_defect_level: this.config[i].items[it].options[op].level,
1586
+ f_is_defect: this.config[i].items[it].options[op].isdefect,
1587
+ f_item_name: it,
1588
+ f_item_value: this.config[i].items[it].options[op].data,
1589
+ f_path: "",
1590
+ type: "selector"
1591
+ })
1592
+ }
1593
+ }
1594
+ }
1595
+ }
1596
+ for(let q =0;q<this.config[i].quantity;q++) {
1597
+ this.data['device' + n].push(
1598
+ {f_device_type: i, f_items:items}
1599
+ )
1600
+ }
1601
+ }
1602
+ n = n + 1
1603
+ }
1604
+ this.faultshow.number = this.tabs.length
1605
+ },
1606
+ init () {
1607
+ // 无计划安检是否回更待办计划
1608
+ this.data.isupdateplanitem = this.$appdata.getSingleValue('在线安检回更有计划') ? this.$appdata.getSingleValue('在线安检回更有计划') : 'false'
1609
+ // 预约安检单工单编号
1610
+ this.data.f_SafeToRepair_id = this.item.f_service_id
1611
+ this.data.ename = Vue.user.ename
1612
+ this.data.f_outlets = Vue.user.f_parentname
1613
+ this.data.f_meetunit = Vue.user.orgpathnames
1614
+ this.data.orgpathstr = Vue.user.orgpathstr
1615
+ this.data.f_check_item_id = this.item.id
1616
+ this.data.f_check_plan_id = this.f_plan_id
1617
+ this.data.f_checker_id = Vue.user.id
1618
+ this.data.f_checker_name = Vue.user.name
1619
+ this.data.f_check_type = this.item.f_user_type
1620
+ this.data.f_safecheck_type = this.item.f_safecheck_type
1621
+ this.data.f_subcompany = this.item.f_subcompany
1622
+ this.data.f_approved = this.item.f_approvedf_read_instructions
1623
+ this.data.f_repair_approved = this.item.f_repair_approved
1624
+ this.data.f_no_checkplan = this.item.f_no_checkplan
1625
+ this.data.f_approved = this.item.f_approved
1626
+ this.data.f_filialeid = this.item.f_filialeid || Vue.user.orgid
1627
+ this.data.f_orgstr = this.item.f_orgstr
1628
+ this.data.version = this.item.version
1629
+ this.data.f_check_version=this.item.f_check_version
1630
+ this.$set('data.f_meters', this.item.f_plan_meters)
1631
+ this.$set('data.f_userinfo_code', this.item.f_userinfo_code)
1632
+ // 安检状态
1633
+ this.$set('data.f_entry_status', '入户')
1634
+ this.$set('data.f_safe_type', '年度安检')
1635
+ this.$set('data.f_usegas', '已使用')
1636
+ this.$set('data.f_state',this.item.f_state)
1637
+ this.$set('data.f_source', this.source?this.source:'安检')
1638
+ this.$set('data.f_other_checker_name', '')
1639
+ // 用户信息
1640
+ this.$set('data.f_user_name', this.item.f_user_name)
1641
+ this.$set('data.f_rent_phone', this.item.f_rent_phone)
1642
+ this.$set('data.f_user_phone', this.item.f_user_phone || this.item.f_plan_meters[0].f_user_phone)
1643
+ this.$set('data.f_userinfoid', this.item.f_userinfoid)
1644
+ this.$set('data.f_address', this.item.f_address)
1645
+ this.$set('data.f_card_id', this.item.f_card_id)
1646
+ this.$set('data.f_slice_area', this.item.f_slice_area)
1647
+ this.$set('data.f_recheck_id', this.item.id)
1648
+ this.$set('rowCodata.f_recheck_id', this.item.id)
1649
+ this.$set('data.f_street', this.item.f_street)
1650
+ this.$set('data.f_room', this.item.f_room)
1651
+ this.$set('data.f_building', this.item.f_building)
1652
+ this.$set('data.f_unit', this.item.f_unit)
1653
+ this.$set('data.f_floor', this.item.f_floor)
1654
+ this.$set('data.f_residential_area' , this.item.f_residential_area)
1655
+ this.$set('data.f_idnumber', this.item.f_idnumber)
1656
+ this.$set('data.f_comments', this.item.f_comments)
1657
+ this.$set('data.f_userproperties', this.item.f_userproperties)
1658
+ this.$set('data.f_client_evaluation', '满意')
1659
+ this.$set('data.f_userfiles_id', this.item.f_plan_meters[0].f_userfiles_id)
1660
+ this.$set('data.f_valve_state', this.item.f_plan_meters[0].f_valve_state)
1661
+ this.$set('data.f_off_valve_reason', this.item.f_plan_meters[0].f_off_valve_reason)
1662
+ // 处置方式
1663
+ this.$set('data.f_gas_guidelines', true)
1664
+ this.$set('data.f_safety_warning', true)
1665
+ this.$set('data.f_gas_manual', true)
1666
+ this.$set('data.f_no_gas_device', false)
1667
+ this.$set('data.f_close_valve', false)
1668
+ this.$set('data.f_unload_battery', false)
1669
+ if (this.data.f_check_item_id == '' && this.item.f_no_checkplan == '无计划安检' ) {
1670
+ this.data.f_check_item_id = this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4()
1671
+ }
1672
+ if(this.item.f_no_checkplan == '复检'){
1673
+ this.data.f_check_item_id = this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4() + "" + this.S4()
1674
+ }
1675
+ if(this.item.f_plan_meters) {
1676
+ for (let de in this.devices) {
1677
+ if(typeof this.devices[de]=='function'){
1678
+ continue
1679
+ }
1680
+ this.$set('data.device' + this.devices[de].n, [])
1681
+ for (let i = 0; i < this.item.f_plan_meters.length; i++) {
1682
+ if (this.item.f_plan_meters[i].f_meter_type) {
1683
+ this.data.f_meter_type=this.item.f_plan_meters[i].f_meter_type
1684
+ //tag)
1685
+ if (this.devices[de].device == "燃气表" && this.item.f_plan_meters[i].f_meter_type.indexOf('机表') >= 0) {
1686
+ this.data['device' + this.devices[de].n].push({
1687
+ f_device_type: "燃气表",
1688
+ f_items: [
1689
+ {
1690
+ f_defect_level: null,
1691
+ f_device_id: "",
1692
+ f_is_defect: "",
1693
+ f_item_name: "基表编号",
1694
+ f_item_value: this.item.f_plan_meters[i].f_meter_no,
1695
+ f_path: "",
1696
+ type: "number"
1697
+ },
1698
+ {
1699
+ f_defect_level: null,
1700
+ f_device_id: "",
1701
+ f_is_defect: "",
1702
+ f_item_name: "气表型号",
1703
+ f_item_value: this.item.f_plan_meters[i].f_diaphgram_size,
1704
+ f_path: "",
1705
+ type: "string"
1706
+ },
1707
+ {
1708
+ f_defect_level: null,
1709
+ f_device_id: "",
1710
+ f_is_defect: "",
1711
+ f_item_name: "气表品牌",
1712
+ f_item_value: this.item.f_plan_meters[i].f_aliasname,
1713
+ f_path: "",
1714
+ type: "string"
1715
+ },
1716
+ {
1717
+ f_defect_level: null,
1718
+ f_device_id: "",
1719
+ f_is_defect: "",
1720
+ f_item_name: "进气方向",
1721
+ f_item_value: this.item.f_plan_meters[i].f_flow_direction,
1722
+ f_path: "",
1723
+ type: "string"
1724
+ },
1725
+ {
1726
+ f_defect_level: null,
1727
+ f_device_id: "",
1728
+ f_is_defect: "",
1729
+ f_item_name: "上期表读数",
1730
+ f_item_value: this.item.f_plan_meters[i].f_prior_reading,
1731
+ f_path: "",
1732
+ type: "number"
1733
+ },
1734
+ {
1735
+ f_defect_level: null,
1736
+ f_device_id: "",
1737
+ f_is_defect: "",
1738
+ f_item_name: "表封号",
1739
+ f_item_value: this.item.f_plan_meters[i].f_metertitles,
1740
+ f_path: "",
1741
+ type: "string"
1742
+ }
1743
+ ]
1744
+ })
1745
+ }
1746
+ else if (this.devices[de].device == "燃气表") {
1747
+ this.data['device' + this.devices[de].n].push({
1748
+ f_device_type: "燃气表",
1749
+ f_items: [
1750
+ {
1751
+ f_defect_level: null,
1752
+ f_device_id: "",
1753
+ f_is_defect: "",
1754
+ f_item_name: "基表编号",
1755
+ f_item_value: this.item.f_plan_meters[i].f_meter_no,
1756
+ f_path: "",
1757
+ type: "number"
1758
+ },
1759
+ {
1760
+ f_defect_level: null,
1761
+ f_device_id: "",
1762
+ f_is_defect: "",
1763
+ f_item_name: "气表型号",
1764
+ f_item_value: this.item.f_plan_meters[i].f_diaphgram_size,
1765
+ f_path: "",
1766
+ type: "string"
1767
+ },
1768
+ {
1769
+ f_defect_level: null,
1770
+ f_device_id: "",
1771
+ f_is_defect: "",
1772
+ f_item_name: "气表品牌",
1773
+ f_item_value: this.item.f_plan_meters[i].f_aliasname,
1774
+ f_path: "",
1775
+ type: "string"
1776
+ },
1777
+ {
1778
+ f_defect_level: null,
1779
+ f_device_id: "",
1780
+ f_is_defect: "",
1781
+ f_item_name: "进气方向",
1782
+ f_item_value: this.item.f_plan_meters[i].f_flow_direction,
1783
+ f_path: "",
1784
+ type: "string"
1785
+ },
1786
+ {
1787
+ f_defect_level: null,
1788
+ f_device_id: "",
1789
+ f_is_defect: "",
1790
+ f_item_name: "上期表读数",
1791
+ f_item_value: this.item.f_plan_meters[i].f_prior_reading,
1792
+ f_path: "",
1793
+ type: "number"
1794
+ },
1795
+ {
1796
+ f_defect_level: null,
1797
+ f_device_id: "",
1798
+ f_is_defect: "",
1799
+ f_item_name: "表封号",
1800
+ f_item_value: this.item.f_plan_meters[i].f_metertitles,
1801
+ f_path: "",
1802
+ type: "string"
1803
+ }
1804
+ ]
1805
+ })
1806
+ }
1807
+ if(this.devices[de].device == "燃气表" && this.item.f_plan_meters[i].f_meter_type.indexOf('物联网表') >= 0){
1808
+ this.data['device' + this.devices[de].n].forEach(device => {
1809
+ if (!this.data.f_collection_type) {
1810
+ this.data.f_collection_type = this.item.f_plan_meters[i].f_collection_type
1811
+ delete this.config['燃气表']['items']['累购气量']
1812
+ delete this.config['燃气表']['items']['已用金额']
1813
+ delete this.config['燃气表']['items']['剩余气量']
1814
+ delete this.config['燃气表']['items']['气量异常差值']
1815
+ delete this.config['燃气表']['items']['金额异常差值']
1816
+ device.f_items.push(
1817
+ {
1818
+ f_defect_level: null,
1819
+ f_device_id: "",
1820
+ f_is_defect: "",
1821
+ f_item_name: "初始表底",
1822
+ isshow: true,
1823
+ f_item_value: this.item.f_plan_meters[i].f_initial_base,
1824
+ f_path: "",
1825
+ type: "number"
1826
+ },
1827
+ {
1828
+ f_defect_level: null,
1829
+ f_device_id: "",
1830
+ f_is_defect: "",
1831
+ f_item_name: "累购金额",
1832
+ f_item_value: this.item.f_plan_meters[i].f_total_fee,
1833
+ f_path: "",
1834
+ type: "number"
1835
+ },
1836
+ {
1837
+ f_defect_level: null,
1838
+ f_device_id: "",
1839
+ f_is_defect: "",
1840
+ f_item_name: "已用气量",
1841
+ f_item_value: this.item.f_plan_meters[i].f_meter_base,
1842
+ f_path: "",
1843
+ type: "number"
1844
+ },
1845
+ {
1846
+ f_defect_level: null,
1847
+ f_device_id: "",
1848
+ f_is_defect: "",
1849
+ f_item_name: "剩余金额",
1850
+ f_item_value: '',
1851
+ f_path: "",
1852
+ type: "number"
1853
+ },
1854
+ {
1855
+ f_defect_level: null,
1856
+ f_device_id: "",
1857
+ f_is_defect: "",
1858
+ f_item_name: "系统余额",
1859
+ f_item_value: this.item.f_plan_meters[i].f_balance_amount,
1860
+ f_path: "",
1861
+ type: "number"
1862
+ }
1863
+ )
1864
+ }
1865
+ })
1866
+ } else if (this.devices[de].device == "燃气表" && this.item.f_plan_meters[i].f_collection_type) {
1867
+ this.data['device' + this.devices[de].n].forEach(device => {
1868
+ /*
1869
+ "累购气量":{"index":8,"type":"number","readonly":true},
1870
+ "累购金额":{"index":8,"type":"number","readonly":true},
1871
+ "字轮读数":{"index":9,"type":"number","checkmust": true},
1872
+ "已用金额":{"index":9,"type":"number","checkmust": true},
1873
+ "剩余气量":{"index":10,"type":"number","checkmust": true},
1874
+ "剩余金额":{"index":10,"type":"number","checkmust": true},
1875
+ "气量异常差值":{"index":11,"type":"number","readonly": true},
1876
+ "金额异常差值":{"index":11,"type":"number","readonly": true}
1877
+ */
1878
+ if (this.item.f_plan_meters[i].f_collection_type == '按金额') {
1879
+ if (!this.data.f_collection_type) {
1880
+ this.data.f_collection_type = this.item.f_plan_meters[i].f_collection_type
1881
+ delete this.config['燃气表']['items']['累购气量']
1882
+ delete this.config['燃气表']['items']['已用气量']
1883
+ delete this.config['燃气表']['items']['剩余气量']
1884
+ delete this.config['燃气表']['items']['气量异常差值']
1885
+ delete this.config['燃气表']['items']['系统余额']
1886
+ device.f_items.push(
1887
+ {
1888
+ f_defect_level: null,
1889
+ f_device_id: "",
1890
+ f_is_defect: "",
1891
+ f_item_name: "初始表底",
1892
+ isshow: false,
1893
+ f_item_value: '',
1894
+ f_path: "",
1895
+ type: "number"
1896
+ },
1897
+ {
1898
+ f_defect_level: null,
1899
+ f_device_id: "",
1900
+ f_is_defect: "",
1901
+ f_item_name: "累购金额",
1902
+ f_item_value: this.item.f_plan_meters[i].f_total_fee,
1903
+ f_path: "",
1904
+ type: "number"
1905
+ },
1906
+ {
1907
+ f_defect_level: null,
1908
+ f_device_id: "",
1909
+ f_is_defect: "",
1910
+ f_item_name: "已用金额",
1911
+ f_item_value: null,
1912
+ f_path: "",
1913
+ type: "number"
1914
+ },
1915
+ {
1916
+ f_defect_level: null,
1917
+ f_device_id: "",
1918
+ f_is_defect: "",
1919
+ f_item_name: "剩余金额",
1920
+ f_item_value: null,
1921
+ f_path: "",
1922
+ type: "number"
1923
+ },
1924
+ {
1925
+ f_defect_level: null,
1926
+ f_device_id: "",
1927
+ f_is_defect: "",
1928
+ f_item_name: "金额异常差值",
1929
+ f_item_value: null,
1930
+ f_path: "",
1931
+ type: "number"
1932
+ }
1933
+ )
1934
+ }
1935
+ } else
1936
+ if (this.item.f_plan_meters[i].f_collection_type == '按气量') {
1937
+ if (!this.data.f_collection_type) {
1938
+ this.data.f_collection_type = this.item.f_plan_meters[i].f_collection_type
1939
+ delete this.config['燃气表']['items']['累购金额']
1940
+ delete this.config['燃气表']['items']['已用金额']
1941
+ delete this.config['燃气表']['items']['剩余金额']
1942
+ delete this.config['燃气表']['items']['金额异常差值']
1943
+ delete this.config['燃气表']['items']['系统余额']
1944
+ device.f_items.push(
1945
+ {
1946
+ f_defect_level: null,
1947
+ f_device_id: "",
1948
+ f_is_defect: "",
1949
+ f_item_name: "初始表底",
1950
+ isshow: true,
1951
+ f_item_value: this.item.f_plan_meters[i].f_initial_base,
1952
+ f_path: "",
1953
+ type: "number"
1954
+ },
1955
+ {
1956
+ f_defect_level: null,
1957
+ f_device_id: "",
1958
+ f_is_defect: "",
1959
+ f_item_name: "累购气量",
1960
+ f_item_value: this.item.f_plan_meters[i].f_total_gas,
1961
+ f_path: "",
1962
+ type: "number"
1963
+ },
1964
+ {
1965
+ f_defect_level: null,
1966
+ f_device_id: "",
1967
+ f_is_defect: "",
1968
+ f_item_name: "已用气量",
1969
+ f_item_value: this.item.f_plan_meters[i].f_meter_base,
1970
+ f_path: "",
1971
+ type: "number"
1972
+ },
1973
+ {
1974
+ f_defect_level: null,
1975
+ f_device_id: "",
1976
+ f_is_defect: "",
1977
+ f_item_name: "剩余气量",
1978
+ f_item_value: "",
1979
+ f_path: "",
1980
+ type: "number"
1981
+ },
1982
+ {
1983
+ f_defect_level: null,
1984
+ f_device_id: "",
1985
+ f_is_defect: "",
1986
+ f_item_name: "气量异常差值",
1987
+ f_item_value: null,
1988
+ f_path: "",
1989
+ type: "number"
1990
+ }
1991
+ )
1992
+ }
1993
+ }
1994
+ })
1995
+ } else if(this.devices[de].device == "燃气表"){
1996
+ this.data['device' + this.devices[de].n].forEach(device => {
1997
+ if (!this.data.f_collection_type) {
1998
+ this.data.f_collection_type = this.item.f_plan_meters[i].f_collection_type
1999
+ delete this.config['燃气表']['items']['累购金额']
2000
+ delete this.config['燃气表']['items']['已用金额']
2001
+ delete this.config['燃气表']['items']['剩余金额']
2002
+ delete this.config['燃气表']['items']['金额异常差值']
2003
+ delete this.config['燃气表']['items']['系统余额']
2004
+ device.f_items.push(
2005
+ {
2006
+ f_defect_level: null,
2007
+ f_device_id: "",
2008
+ f_is_defect: "",
2009
+ f_item_name: "初始表底",
2010
+ isshow: true,
2011
+ f_item_value: this.item.f_plan_meters[i].f_initial_base,
2012
+ f_path: "",
2013
+ type: "number"
2014
+ },
2015
+ {
2016
+ f_defect_level: null,
2017
+ f_device_id: "",
2018
+ f_is_defect: "",
2019
+ f_item_name: "累购气量",
2020
+ f_item_value: this.item.f_plan_meters[i].f_total_gas,
2021
+ f_path: "",
2022
+ type: "number"
2023
+ },
2024
+ {
2025
+ f_defect_level: null,
2026
+ f_device_id: "",
2027
+ f_is_defect: "",
2028
+ f_item_name: "已用气量",
2029
+ f_item_value: this.item.f_plan_meters[i].f_meter_base,
2030
+ f_path: "",
2031
+ type: "number"
2032
+ },
2033
+ {
2034
+ f_defect_level: null,
2035
+ f_device_id: "",
2036
+ f_is_defect: "",
2037
+ f_item_name: "剩余气量",
2038
+ f_item_value: '',
2039
+ f_path: "",
2040
+ type: "number"
2041
+ },
2042
+ {
2043
+ f_defect_level: null,
2044
+ f_device_id: "",
2045
+ f_is_defect: "",
2046
+ f_item_name: "气量异常差值",
2047
+ isshow:false,
2048
+ f_item_value: null,
2049
+ f_path: "",
2050
+ type: "number"
2051
+ }
2052
+ )
2053
+ }
2054
+ })
2055
+ }
2056
+ }
2057
+ }
2058
+ }
2059
+ }
2060
+ this.$goto('safecheck-userinfo', {userinfo:this.data}, 'repair')
2061
+ }
2062
+ },
2063
+ watch: {
2064
+ 'row' () {
2065
+ //tag
2066
+ this.copy()
2067
+ }
2068
+ },
2069
+ async ready () {
2070
+ if (this.item.f_userinfoid){
2071
+ let http = new HttpResetClass()
2072
+ let response = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/af-telephone/rs/sql/tel_singleTable_OrderBy`, {
2073
+ data: {
2074
+ items: 'count(0) as num',
2075
+ tablename: 't_userfiles a left join t_userinfo b on a.f_userinfo_id = b.f_userinfo_id',
2076
+ condition: `a.f_userinfo_id = '${this.item.f_userinfoid}' and a.f_meter_classify != '物联网表' and a.f_table_state = '正常' and b.f_user_state='正常'`,
2077
+ orderitem: '1'
2078
+ }
2079
+ }, {resolveMsg: null, rejectMsg: null})
2080
+ if (response.data[0].num > 0 ){
2081
+ this.tabs.push({
2082
+ header: '抄表', complete: 'meter-reading', class: 'meter-reading-class', props: null
2083
+ })
2084
+ }
2085
+ }
2086
+ //送气超期功能
2087
+ //await this.isoverDate()
2088
+ this.putDevices()
2089
+ //如果已检,则提取安检单
2090
+ if (this.item.f_state != '未检') {
2091
+ if (this.role == 'inspect' || this.role == 'androidview') {
2092
+ HostApp.__callback__ = this.loaded
2093
+ HostApp.__this__ = this
2094
+ let that = this
2095
+ let value = {}
2096
+ if (this.role == 'inspect') {
2097
+ let condition=` f_check_item_id ='${this.item.id}'`
2098
+ if (this.item.f_no_checkplan == '无计划安检') {
2099
+ condition += ` and f_no_checkplan = '无计划安检'`
2100
+ }
2101
+ value = this.$androidUtil.bzLogic('path_getPhoneCheckPaper', {condition: condition})
2102
+ } else {
2103
+ value = await this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/path/getUserinfomation`, {data: {condition: `id = '${this.item.f_paper_id}'`}})
2104
+ }
2105
+ Util.replaceFalse(value)
2106
+ if (value.data.length != 0) {
2107
+ that.$set('data', value.data[0])
2108
+ if (this.data.f_collection_type == '按气量') {
2109
+ delete this.config['燃气表']['items']['累购金额']
2110
+ delete this.config['燃气表']['items']['已用金额']
2111
+ delete this.config['燃气表']['items']['剩余金额']
2112
+ delete this.config['燃气表']['items']['金额异常差值']
2113
+ delete this.config['燃气表']['items']['系统余额']
2114
+ } else if (this.data.f_collection_type == '按金额') {
2115
+ delete this.config['燃气表']['items']['累购气量']
2116
+ delete this.config['燃气表']['items']['已用气量']
2117
+ delete this.config['燃气表']['items']['剩余气量']
2118
+ delete this.config['燃气表']['items']['气量异常差值']
2119
+ delete this.config['燃气表']['items']['系统余额']
2120
+ }
2121
+ //tag)
2122
+ if (value.data[0].f_devices) {
2123
+ for (let da in that.devices) {
2124
+ if(typeof that.devices[da]=='function'){
2125
+ continue
2126
+ }
2127
+ that.$set('data.device' + that.devices[da].n, [])
2128
+ }
2129
+ value.data[0].f_devices.forEach((item) => {
2130
+ for (let i in item.f_items) {
2131
+ if(typeof item.f_items[i]=='function'){
2132
+ continue
2133
+ }
2134
+ for (let de in that.config[item.f_device_type].items) {
2135
+ if(typeof that.config[item.f_device_type].items[de]=='function'){
2136
+ continue
2137
+ }
2138
+ if (item.f_items[i].f_item_name == de) {
2139
+ if (that.config[item.f_device_type].items[de].type == 'selector' || that.config[item.f_device_type].items[de].type == 'checkbox') {
2140
+ item.f_items[i].f_item_value = []
2141
+ } else {
2142
+ item.f_items[i].f_item_value = ''
2143
+ }
2144
+ }
2145
+ }
2146
+ for (let j in item.f_items[i].f_item_lists) {
2147
+ if(typeof item.f_items[i].f_item_lists[j]=='function'){
2148
+ continue
2149
+ }
2150
+ if (item.f_items[i].f_item_value instanceof Array) {
2151
+ item.f_items[i].f_item_value.push(item.f_items[i].f_item_lists[j].f_item_value)
2152
+ } else {
2153
+ item.f_items[i].f_item_value = item.f_items[i].f_item_lists[j].f_item_value
2154
+ }
2155
+ }
2156
+
2157
+ }
2158
+ for (let de in that.devices) {
2159
+ if(typeof that.devices[de]=='function'){
2160
+ continue
2161
+ }
2162
+ if (that.devices[de].device == item.f_device_type) {
2163
+ that.data['device' + that.devices[de].n].push({
2164
+ f_device_type: item.f_device_type,
2165
+ f_items: item.f_items
2166
+ })
2167
+ //tag)
2168
+ }
2169
+ }
2170
+ })
2171
+ if (this.role == 'androidview') {
2172
+ Util.androidRatifyPics(that.data, this.$androidUtil.getProxyUrl())
2173
+ Util.androidRatifyPics(that.picture, this.$androidUtil.getProxyUrl())
2174
+ Util.booleanFilter(that.data)
2175
+ }
2176
+ //tag)
2177
+ }
2178
+ } else {
2179
+ this.init()
2180
+ }
2181
+ if(this.parentPage && this.parentPage=='CurrentCreate'){
2182
+ let isRecodr = this.$appdata.getSingleValue('无限制录音'); //单值参数,为true则是开启全程录音
2183
+ if (isRecodr) {
2184
+ if (isRecodr=='true') {
2185
+ this.$showMessage("为了保证服务质量,您的电话将会被全程录音!")
2186
+ // 初始化录音
2187
+ let resse = this.record()
2188
+ }
2189
+ }
2190
+ }
2191
+ this.$goto('safecheck-userinfo', {userinfo:this.data}, 'repair')
2192
+ } else {
2193
+ let that = this
2194
+ let id
2195
+ if (this.role == 'view') {
2196
+ id = this.item.id
2197
+ }
2198
+ this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/path/getUserinfomation`, {data:{condition:`id = '${id}'`}}).then((respanse)=> {
2199
+ if (respanse.data.length != 0) {
2200
+ that.data = Object.assign(that.data,respanse.data[0])
2201
+ if(respanse.data[0].f_devices) {
2202
+ for (let da in that.devices) {
2203
+ that.$set('data.device' + that.devices[da].n, [])
2204
+ }
2205
+ respanse.data[0].f_devices.forEach((item) => {
2206
+ for (let de in that.devices) {
2207
+ if (that.devices[de].device == item.f_device_type) {
2208
+ that.data['device' + that.devices[de].n].push({
2209
+ f_device_type: item.f_device_type,
2210
+ f_items: item.f_items
2211
+ })
2212
+ }
2213
+ }
2214
+ })
2215
+ }
2216
+ Util.replaceFalse(that.data)
2217
+ Util.booleanFilter(that.data)
2218
+ if(this.role == 'view'){
2219
+ Util.ratifyPics(that.data)
2220
+ }else{
2221
+ Util.androidRatifyPics(that.data,this.$androidUtil.getProxyUrl())
2222
+ }
2223
+ } else {
2224
+ alert("该安检单可能已不在本地!")
2225
+ this.init()
2226
+ }
2227
+ this.$goto('safecheck-userinfo', {userinfo:this.data}, 'paper-router')
2228
+ }
2229
+ ).catch(
2230
+ (respanse) => {
2231
+ alert('查找安检单失败')
2232
+ })
2233
+ }
2234
+ }else{
2235
+ if(this.parentPage && (this.parentPage == 'CurrentCreate' || this.parentPage == 'AddPlanItem') ){
2236
+ //tag
2237
+ let isRecodr = this.$appdata.getSingleValue('无限制录音'); //单值参数,为true则是开启全程录音
2238
+ if (isRecodr) {
2239
+ if (isRecodr=='true') {
2240
+ // this.$showMessage("为了保证服务质量,您的电话将会被全程录音!")
2241
+ // 初始化录音
2242
+ let resse = this.record()
2243
+ }
2244
+ }
2245
+ }
2246
+ this.init()
2247
+ }
2248
+ },
2249
+ events: {
2250
+ 'tijiao': function () {
2251
+ // 事件回调内的 `this` 自动绑定到注册它的实例上
2252
+ this.confirm()
2253
+ }
2254
+ }
2255
+ }
2256
+ </script>
2257
+ <style lang="less">
2258
+ @import "../../../../src/bootstrap/less/variables.less";
2259
+ .noclickbut {
2260
+ pointer-events: none;
2261
+ }
2262
+ .tab-befor-img (@url) {
2263
+ content: '';
2264
+ background-image: url("@{url}");
2265
+ background-size: 20px;
2266
+ display: inline-block;
2267
+ margin-right: 8px;
2268
+ margin-top: 0.3em;
2269
+ height: 1.3em;
2270
+ width: 1.3em;
2271
+ vertical-align: -35%;
2272
+ }
2273
+
2274
+ @media screen and (min-width: 768px) {
2275
+ .android-repair-order > div > ul a {
2276
+ font-size: @font-size-h2;
2277
+ margin: 0.3em 0;
2278
+ }
2279
+ }
2280
+ .repair-details-class{
2281
+ &::before {
2282
+ .tab-befor-img("../../../assets/huneiweixiu1.png");
2283
+ }
2284
+ }
2285
+ .repair-info-class {
2286
+ &::before {
2287
+ .tab-befor-img("../../../assets/baoxiuxinxi1.png");
2288
+ }
2289
+ }
2290
+ .repair-user-info-class {
2291
+ &::before {
2292
+ .tab-befor-img("../../../assets/jibenxinxi1.png")
2293
+ }
2294
+ }
2295
+
2296
+ .door-service-class {
2297
+ &::before {
2298
+ .tab-befor-img("../../../assets/huneiweixiu1.png")
2299
+ }
2300
+ }
2301
+
2302
+ .pipeline-class {
2303
+ &::before {
2304
+ .tab-befor-img("../../../assets/guandao1.png")
2305
+ }
2306
+ }
2307
+
2308
+ .device-service-class {
2309
+ &::before {
2310
+ .tab-befor-img("../../../assets/shebeiweixiu1.png")
2311
+ }
2312
+ }
2313
+
2314
+ .trouble-removal-class {
2315
+ &::before {
2316
+ .tab-befor-img("../../../assets/shiguchuli.png")
2317
+ }
2318
+ }
2319
+
2320
+ .cooking-utensils-class {
2321
+ &::before {
2322
+ .tab-befor-img("../../../assets/zaoju1.png")
2323
+ }
2324
+ }
2325
+
2326
+ .outlay-class {
2327
+ &::before {
2328
+ .tab-befor-img("../../../assets/feiyong1.png")
2329
+ }
2330
+ }
2331
+ .meter-reading-class {
2332
+ &::before {
2333
+ .tab-befor-img("../../../assets/guzhanghuizong1.png")
2334
+ }
2335
+ }
2336
+ .fault-all-class {
2337
+ &::before {
2338
+ .tab-befor-img("../../../assets/guzhanghuizong1.png")
2339
+ }
2340
+ }
2341
+ .photo-write-class {
2342
+ &::before {
2343
+ .tab-befor-img("../../../assets/zaoju.png")
2344
+ }
2345
+ }
2346
+ .delay-apply-class {
2347
+ &::before {
2348
+ .tab-befor-img("../../../assets/yonghubaoxiu.png")
2349
+ }
2350
+ }
2351
+
2352
+ .repair-back-class {
2353
+ &::before {
2354
+ .tab-befor-img("../../../assets/fanhui.png")
2355
+ }
2356
+ }
2357
+ .butt2 {
2358
+ display: inline;
2359
+ float: right;
2360
+ width: 10px;
2361
+ text-align: center;
2362
+ align-items:center;
2363
+ position: absolute;
2364
+ top:50%;
2365
+
2366
+ left:90%;
2367
+ transform: translate(-50%,-50%);
2368
+ }
2369
+ .linesty{
2370
+ display: inline-block;
2371
+ height:1px;
2372
+ width:100%;
2373
+ background:#d0d0d0;
2374
+ overflow:hidden;
2375
+ vertical-align: middle;
2376
+ }
2377
+ .spanboder{
2378
+ border-bottom:2px solid #499edf;
2379
+ padding-bottom: 8px
2380
+ }
2381
+ .app-botton {
2382
+ position:fixed;
2383
+ background: #87b2dd;
2384
+ right:8px;
2385
+ color: #FFF;
2386
+ padding: 8px;
2387
+ text-align: center;
2388
+ font-size: 1.2em;
2389
+ z-index: 10;
2390
+ opacity:0.5;
2391
+ bottom: 50px;
2392
+ margin-top: -10px;
2393
+ height: 40px;
2394
+ }
2395
+ .android-repair-order > div > ul a {
2396
+ font-size: 12px;
2397
+ color: #333333;
2398
+ padding: 13px 16px;
2399
+ }
2400
+ </style>