telephone-clients 3.0.104-3 → 3.0.104-30
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 +1 -1
- package/src/components/guoxin/Console.vue +9 -0
- package/src/components/pc/RepairsWork.vue +11 -1
- package/src/components/pc/WorkList.vue +2 -1
- package/src/components/sendsingle/onlinequeryuser.vue +1 -1
- package/src/components/temp/HandplanInfo.vue +12 -1
- package/src/components/temp/InstructInfo.vue +1 -1
- package/src/filiale/hanzhong/telephone.js +1 -1
- package/src/filiale/jiaocheng/android/createQRcode.vue +204 -0
- package/src/filiale/jiaocheng/android/onlineBuyGas.vue +637 -0
- package/src/filiale/jiaocheng/telephone.js +8 -0
- package/src/filiale/jiaocheng/telephoneAndroid.js +15 -0
- package/src/filiale/rizhao/telephone.js +1 -1
- package/src/filiale/shanxian/pc/WorkList.vue +2 -2
- package/src/filiale/shexian/pc/TelAgentVoiceReport.vue +9 -9
- package/src/filiale/shexian/pc/WorkList.vue +4 -1
- package/src/filiale/shexian/pc/WorkListAllNew.vue +7 -1
- package/src/filiale/tongchuan/android/RepairDetails.vue +623 -0
- package/src/filiale/tongchuan/telephoneAndroid.js +1 -0
- package/src/filiale/wenxi/pc/RepairsWork.vue +2 -2
- package/src/filiale/wenxi/pc/TelAgentVoiceReport.vue +290 -0
- package/src/filiale/wenxi/pc/WorkListAll.vue +698 -698
- package/src/filiale/wenxi/telephone.js +18 -17
- package/src/filiale/wuhai/telephone.js +1 -1
- package/src/filiale/yuncheng/pc/WorkList.vue +823 -0
- package/src/filiale/yuncheng/telephone.js +2 -1
- package/src/main.js +22 -22
- package/src/telephone.js +1 -1
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
<delay-reply :row="selectone" @success="selfSearch()" @cancel="editflag = null"></delay-reply>
|
|
245
245
|
</div>
|
|
246
246
|
</div>
|
|
247
|
-
<modal :show.sync="editflag==='工单打回'||editflag==='工单下发'||editflag==='派单'" v-
|
|
247
|
+
<modal :show.sync="editflag==='工单打回'||editflag==='工单下发'||editflag==='派单'" v-ref:modal backdrop="false">
|
|
248
248
|
<header slot="modal-header" class="modal-header">
|
|
249
249
|
{{ editflag === '工单打回' ? '工单打回' : editflag ==='工单下发'?'工单下发':'派单' }}
|
|
250
250
|
</header>
|
|
@@ -713,7 +713,7 @@ export default {
|
|
|
713
713
|
},
|
|
714
714
|
proc (selectone, type) {
|
|
715
715
|
this.editflag = type
|
|
716
|
-
this.selectone = selectone
|
|
716
|
+
this.selectone = Object.assign({},selectone)
|
|
717
717
|
},
|
|
718
718
|
complanReview (itemVal, type) {
|
|
719
719
|
//tag
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
<th>
|
|
63
63
|
<nobr>接线率</nobr>
|
|
64
64
|
</th>
|
|
65
|
-
<th
|
|
66
|
-
<nobr>置忙次数</nobr
|
|
67
|
-
</th
|
|
65
|
+
<!-- <th>-->
|
|
66
|
+
<!-- <nobr>置忙次数</nobr>-->
|
|
67
|
+
<!-- </th>-->
|
|
68
68
|
<th>
|
|
69
69
|
<nobr>已接</nobr>
|
|
70
70
|
</th>
|
|
@@ -111,9 +111,9 @@
|
|
|
111
111
|
<td style="text-align:center">
|
|
112
112
|
<nobr>{{ row.scale }}</nobr>
|
|
113
113
|
</td>
|
|
114
|
-
<td style="text-align:center"
|
|
115
|
-
<nobr>{{ row.zhimangcishu }}</nobr
|
|
116
|
-
</td
|
|
114
|
+
<!-- <td style="text-align:center">-->
|
|
115
|
+
<!-- <nobr>{{ row.zhimangcishu }}</nobr>-->
|
|
116
|
+
<!-- </td>-->
|
|
117
117
|
<td style="text-align:center" >
|
|
118
118
|
<nobr>{{ row.yijie }}</nobr>
|
|
119
119
|
</td>
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
<td style="text-align: center"><span><b> </b></span></td>
|
|
152
152
|
<td style="text-align: center">{{model.sums.zongji}}</td>
|
|
153
153
|
<td style="text-align: center">{{((model.sums.yijie/model.sums.zongji)*100).toFixed(2)+'%'}}</td>
|
|
154
|
-
<td style="text-align: center">{{model.sums.zhimangcishu}}</td
|
|
154
|
+
<!-- <td style="text-align: center">{{model.sums.zhimangcishu}}</td>-->
|
|
155
155
|
<td style="text-align: center">{{model.sums.yijie}}</td>
|
|
156
156
|
<td style="text-align: center">{{model.sums.weijie}}</td>
|
|
157
157
|
<td style="text-align: center">{{model.sums.waibo}}</td>
|
|
@@ -181,7 +181,7 @@ export default {
|
|
|
181
181
|
startDate: 'this.startDate',
|
|
182
182
|
endDate: 'this.endDate',
|
|
183
183
|
f_filiale_id: 'this.f_filiale_id'
|
|
184
|
-
},{zongji:'',yijie:'',weijie:'',waibo:'',
|
|
184
|
+
},{zongji:'',yijie:'',weijie:'',waibo:'',zixundan:'',tousudan:'',baoxiudan:''})
|
|
185
185
|
model.f_filiale_id = `('${this.$login.f.orgid}')`
|
|
186
186
|
model.startDate=Util.getYesterDay() + ' 00:00:00'//昨天时间
|
|
187
187
|
model.endDate=Util.toStandardDateString()+ ' 23:59:59'//当前时间
|
|
@@ -204,7 +204,7 @@ export default {
|
|
|
204
204
|
'id': '工号',
|
|
205
205
|
'quanbujieting': '接线数',
|
|
206
206
|
'scale': '接线率',
|
|
207
|
-
'zhimangcishu': '置忙次数',
|
|
207
|
+
// 'zhimangcishu': '置忙次数',
|
|
208
208
|
'yijie': '已接',
|
|
209
209
|
'weijie': '未接',
|
|
210
210
|
'waibo': '外拨',
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
<export-excel-tel
|
|
38
38
|
:data="$parent.$parent.searchData"
|
|
39
39
|
:field="$parent.$parent.excelHeaders"
|
|
40
|
-
sqlurl="rs/logic/telephoneExport" sql-name="
|
|
40
|
+
sqlurl="rs/logic/telephoneExport" :sql-name="$parent.$parent.sqlname" template-name='工单导出'
|
|
41
41
|
:choose-col="true"></export-excel-tel>
|
|
42
42
|
<div style="float: right;" class="button_spacing"
|
|
43
43
|
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
@@ -393,6 +393,7 @@ export default {
|
|
|
393
393
|
title: '工单列表',
|
|
394
394
|
data () {
|
|
395
395
|
return {
|
|
396
|
+
sqlname:'operatorService',
|
|
396
397
|
// 结案备注
|
|
397
398
|
f_caseremarks:'',
|
|
398
399
|
criteriaShow: false,
|
|
@@ -503,8 +504,10 @@ export default {
|
|
|
503
504
|
this.serlist = []
|
|
504
505
|
if (this.picked) {
|
|
505
506
|
if (this.picked === 'wait') {
|
|
507
|
+
this.sqlname = 'operatorService'
|
|
506
508
|
this.model.url = 'rs/sql/operatorService'
|
|
507
509
|
} else if (this.picked === 'done') {
|
|
510
|
+
this.sqlname = 'doneService'
|
|
508
511
|
this.model.url = 'rs/sql/doneService'
|
|
509
512
|
}
|
|
510
513
|
this.model.rows = []
|
|
@@ -145,7 +145,6 @@
|
|
|
145
145
|
<v-select :value.sync="model.defname" v-model='model.defname'
|
|
146
146
|
:value-single="true"
|
|
147
147
|
:options='$parent.$parent.defnames' placeholder='工单状态'
|
|
148
|
-
condition="sa.defname = '{}'"
|
|
149
148
|
close-on-select></v-select>
|
|
150
149
|
</div>
|
|
151
150
|
<div class="col-sm-3 form-group form-input-group" style="width: 20%">
|
|
@@ -591,6 +590,13 @@ export default {
|
|
|
591
590
|
} else {
|
|
592
591
|
args.condition += ` and tswo.f_filiale_id = '${this.$login.f.orgid}'`
|
|
593
592
|
}
|
|
593
|
+
if(args.model.defname){
|
|
594
|
+
if(args.model.defname == '无法处理'){
|
|
595
|
+
args.condition += ` and (sa.defname = '无法处理' or tswo.f_state = '完成')`
|
|
596
|
+
}else{
|
|
597
|
+
args.condition += ` and sa.defname = '${args.model.defname}'`
|
|
598
|
+
}
|
|
599
|
+
}
|
|
594
600
|
|
|
595
601
|
this.searchData.condition = args.condition
|
|
596
602
|
return this.model.search(args.condition, args.model)
|