telephone-clients 3.0.103-99 → 3.0.104-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/App.vue +54 -54
- package/src/components/guoxin/VisitInfo.vue +0 -11
- package/src/components/pc/NewRepairPaper.vue +370 -370
- package/src/components/pc/VisitInfo.vue +0 -10
- package/src/components/pc/WorkListAllNew.vue +9 -2
- package/src/components/pc/WorkListNew.vue +712 -712
- package/src/components/telreport/TrafficClassificationReport.vue +134 -0
- package/src/components/temp/MetereadInfo.vue +1 -4
- package/src/components/weinan/Console.vue +1 -1
- package/src/components/workorder/FaultAll.vue +1 -1
- package/src/filiale/furuike/pc/WorkHistory.vue +576 -576
- package/src/filiale/qianneng/android/TemporarySingle.vue +537 -537
- package/src/filiale/qianneng/pc/MaterialDetailed.vue +260 -260
- package/src/filiale/qianneng/pc/NewRepairPaper.vue +467 -467
- package/src/filiale/qianneng/pc/RepairsWork.vue +992 -992
- package/src/filiale/qianneng/pc/changetable.vue +273 -273
- package/src/filiale/qianneng/telephone.js +22 -22
- package/src/filiale/shanxian/pc/WorkList.vue +1 -1
- package/src/filiale/shexian/pc/QueryVisitHistory.vue +237 -237
- package/src/filiale/shexian/pc/TelAgentVoiceReport.vue +271 -0
- package/src/filiale/shexian/pc/WorkList.vue +18 -0
- package/src/filiale/shexian/pc/WorkListAllNew.vue +10 -6
- package/src/filiale/shexian/telephone.js +21 -19
- package/src/filiale/zhongsheng/android/FaultAll.vue +741 -741
- package/src/main.js +1 -1
- package/src/telephone.js +3 -0
|
@@ -90,7 +90,6 @@
|
|
|
90
90
|
title: '回访单',
|
|
91
91
|
props: {
|
|
92
92
|
contextxianshi:null,
|
|
93
|
-
show: false,
|
|
94
93
|
row:Object,
|
|
95
94
|
phone:'',
|
|
96
95
|
idwavfile:'',
|
|
@@ -191,14 +190,12 @@
|
|
|
191
190
|
f_visitdate:this.getNowFormatDate(),
|
|
192
191
|
f_record_sound:''
|
|
193
192
|
})
|
|
194
|
-
this.show=false
|
|
195
193
|
this.$emit('visitback','commit')
|
|
196
194
|
})
|
|
197
195
|
},
|
|
198
196
|
// 取消
|
|
199
197
|
clearVisit () {
|
|
200
198
|
this.$emit('visitback','nodo')
|
|
201
|
-
this.show=false
|
|
202
199
|
},
|
|
203
200
|
callout(telnum){
|
|
204
201
|
if(telnum){
|
|
@@ -229,13 +226,6 @@
|
|
|
229
226
|
},
|
|
230
227
|
},
|
|
231
228
|
watch: {
|
|
232
|
-
'show' () {
|
|
233
|
-
this.$emit('show-obj', {showVisit: this.show})
|
|
234
|
-
},
|
|
235
|
-
'row' () {
|
|
236
|
-
this.show=this.row;
|
|
237
|
-
this.$emit('show-obj', {showVisit: this.show})
|
|
238
|
-
},
|
|
239
229
|
'phone'(val){
|
|
240
230
|
this.model.f_phone = val
|
|
241
231
|
}
|
|
@@ -248,6 +248,9 @@
|
|
|
248
248
|
<th>
|
|
249
249
|
<nobr>工单结果</nobr>
|
|
250
250
|
</th>
|
|
251
|
+
<th>
|
|
252
|
+
<nobr>维护信息</nobr>
|
|
253
|
+
</th>
|
|
251
254
|
</tr>
|
|
252
255
|
</template>
|
|
253
256
|
<template partial='body'>
|
|
@@ -321,6 +324,9 @@
|
|
|
321
324
|
<td style="text-align: center;">
|
|
322
325
|
<nobr>{{ row.f_result_status }}</nobr>
|
|
323
326
|
</td>
|
|
327
|
+
<td style="text-align: center;">
|
|
328
|
+
<nobr>{{ row.f_content }}</nobr>
|
|
329
|
+
</td>
|
|
324
330
|
|
|
325
331
|
|
|
326
332
|
</template>
|
|
@@ -415,10 +421,10 @@ export default {
|
|
|
415
421
|
tfoot: '',
|
|
416
422
|
zhihuans: [{label: '全部', value: ''}, {label: '正常', value: '正常'}, {label: '异常', value: '异常'}],
|
|
417
423
|
headData: ['工单类型', '工单编号', '派单时间','客户信息', '联系电话', '故障明细', '工单来源', '工单状态', '派单人', '话务员','接单员',
|
|
418
|
-
'结单时间','到达时间', '离开时间','逾期状态','截止时间','工单结果'],
|
|
424
|
+
'结单时间','到达时间', '离开时间','逾期状态','截止时间','工单结果','维护信息'],
|
|
419
425
|
bodyData: ['f_workorder_type', 'f_service_id', 'f_created_date', 'f_customer_info_show','f_contact_phone', 'f_json', 'f_source',
|
|
420
426
|
'f_state_show', 'f_single_man','f_attendant','f_order_man','f_date','f_date_come','f_date_leave',
|
|
421
|
-
'f_overdue_show','f_finish_time_show','f_result_status'],
|
|
427
|
+
'f_overdue_show','f_finish_time_show','f_result_status','f_content'],
|
|
422
428
|
searchData: {
|
|
423
429
|
condition: '1=1'
|
|
424
430
|
},
|
|
@@ -440,6 +446,7 @@ export default {
|
|
|
440
446
|
'f_overdue_show': '逾期状态',
|
|
441
447
|
'f_finish_time_show': '截止时间',
|
|
442
448
|
'f_result_status': '工单结果',
|
|
449
|
+
'f_content': '维护信息'
|
|
443
450
|
},
|
|
444
451
|
criteriaShow: false
|
|
445
452
|
}
|