telephone-clients 3.0.72-39 → 3.0.72-40
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/telreport/TelMan.vue +127 -127
- package/src/components/workorder/PhoneUpDetail.vue +993 -993
- package/src/components/workorder/RepairDetails.vue +526 -526
- package/src/filiale/furuike/android/CompletedRepair.vue +210 -210
- package/src/filiale/furuike/android/FaultAll.vue +861 -856
- package/src/filiale/furuike/android/Materials.vue +410 -409
- package/src/filiale/furuike/android/RepairOrderVnew.vue +890 -890
- package/src/filiale/furuike/telephoneAndroid.js +23 -23
- package/src/filiale/hanzhong/telephone.js +38 -38
- package/src/filiale/qianneng/android/TemporarySingle.vue +501 -501
- package/src/filiale/qianneng/pc/ComplainWork.vue +324 -324
- package/src/filiale/qianneng/pc/RepairsWork.vue +877 -877
- package/src/filiale/qianneng/pc/Seekwork.vue +308 -308
- package/src/filiale/qianneng/pc/WorkHistory.vue +589 -589
- package/src/filiale/qianneng/telephone.js +22 -22
- package/src/filiale/rizhao/pc/WorkList.vue +783 -783
- package/src/filiale/tongchuan/telephone.js +43 -43
- package/src/filiale/wenxi/pc/FailureEdit.vue +205 -205
- package/src/main.js +1 -1
- package/src/telephone-android.js +360 -360
- package/src/telephone.js +727 -727
package/package.json
CHANGED
|
@@ -1,127 +1,127 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="basic-main" style="height: 100%">
|
|
3
|
-
<criteria-paged :model="model">
|
|
4
|
-
<criteria partial='criteria' @condition-changed='search'>
|
|
5
|
-
<div novalidate class="form-inline auto" partial>
|
|
6
|
-
<div class="form-group">
|
|
7
|
-
<label for="startDate" class="font_normal_body" style="float: none">查询日期:</label>
|
|
8
|
-
<datepicker id="startDate" placeholder="开始日期"
|
|
9
|
-
v-model="model.startDate"
|
|
10
|
-
:value.sync="model.startDate"
|
|
11
|
-
:disabled-days-of-Week="[]"
|
|
12
|
-
:format="'yyyy-MM-dd 00:00:00'"
|
|
13
|
-
:show-reset-button="reset">
|
|
14
|
-
</datepicker>
|
|
15
|
-
<label for="startDate" class="font_normal_body" style="float: none">结束日期:</label>
|
|
16
|
-
<datepicker id="endDate" placeholder="结束日期"
|
|
17
|
-
v-model="model.endDate"
|
|
18
|
-
:value.sync="model.endDate"
|
|
19
|
-
:disabled-days-of-Week="[]"
|
|
20
|
-
:format="'yyyy-MM-dd 23:59:59'"
|
|
21
|
-
:show-reset-button="reset">
|
|
22
|
-
</datepicker>
|
|
23
|
-
<label for="operator" class="font_normal_body" style="float: none">操作员</label>
|
|
24
|
-
<input type="text" class="form-control" v-model="model.operator"
|
|
25
|
-
placeholder='操作员'>
|
|
26
|
-
<button class="btn btn-default" @click="search()">查询</button>
|
|
27
|
-
<export-excel class="button_search button_spacing"
|
|
28
|
-
:data="{startDate: this.model.startDate,endDate: this.model.endDate}"
|
|
29
|
-
:field="{'name':'姓名',
|
|
30
|
-
'quanbujieting':'总呼入数',
|
|
31
|
-
'yijie':'来电接听通数',
|
|
32
|
-
'weijie':'未接来电通数',
|
|
33
|
-
'jietingshichang':'呼入总通话时长(分)',
|
|
34
|
-
'pingjun':'呼入平均通话时长(分)',
|
|
35
|
-
'jietinglv':'来电接听率',
|
|
36
|
-
'waibo':'总外呼数',
|
|
37
|
-
'waiboshichang':'外呼总通话时长(分)',
|
|
38
|
-
'pingjunwaibo':'外呼平均通话时长(分)',
|
|
39
|
-
'zixundan':'咨询单',
|
|
40
|
-
'tousudan':'投诉单',
|
|
41
|
-
'baoxiudan':'报修单'}"
|
|
42
|
-
style="margin-top: 20px"
|
|
43
|
-
sqlurl="rs/logic/exportfile" sql-name="tel_getTelman_1" template-name='话务员工作量汇总报表导出'
|
|
44
|
-
:choose-col="true"></export-excel>
|
|
45
|
-
</div>
|
|
46
|
-
</div>
|
|
47
|
-
</criteria>
|
|
48
|
-
<div partial='list' id='gongye'>
|
|
49
|
-
<data-grid :model="model" classname="reporttable" partial='list'>
|
|
50
|
-
<template partial='head'>
|
|
51
|
-
<tr>
|
|
52
|
-
<th colspan='14' style="border: 1px solid white; border-bottom: 1px solid black; text-align: center;">
|
|
53
|
-
<h1 align="center">话务员工作量汇总报表</h1>
|
|
54
|
-
</th>
|
|
55
|
-
</tr>
|
|
56
|
-
<tr>
|
|
57
|
-
<th>姓名</th>
|
|
58
|
-
<!-- <th>置忙次数</th>-->
|
|
59
|
-
<th>总呼入数</th>
|
|
60
|
-
<th>来电接听通数</th>
|
|
61
|
-
<th>来电未接听通数</th>
|
|
62
|
-
<th>呼入总通话时长(分)</th>
|
|
63
|
-
<th>呼入平均通话时长(分)</th>
|
|
64
|
-
<th>来电接听率</th>
|
|
65
|
-
<th>总外呼数</th>
|
|
66
|
-
<th>外呼总通话时长(分)</th>
|
|
67
|
-
<th>外呼平均通话时长(分)</th>
|
|
68
|
-
<!-- <th>总登录时长</th>-->
|
|
69
|
-
<!-- <th>总置忙时长</th>-->
|
|
70
|
-
<!-- <th>总空闲时长</th>-->
|
|
71
|
-
<th>咨询单</th>
|
|
72
|
-
<th>投诉单</th>
|
|
73
|
-
<th>报修单</th>
|
|
74
|
-
</tr>
|
|
75
|
-
</template>
|
|
76
|
-
<template partial='body'>
|
|
77
|
-
<tr>
|
|
78
|
-
<td style="text-align: center;">{{row.name}}</td>
|
|
79
|
-
<!-- <td style="text-align: center;">{{row.zhimangcishu}}次</td>-->
|
|
80
|
-
<td style="text-align: center;">{{row.quanbujieting}}</td>
|
|
81
|
-
<td style="text-align: center;">{{row.yijie}}</td>
|
|
82
|
-
<td style="text-align: center;">{{row.weijie}}</td>
|
|
83
|
-
<td style="text-align: center;">{{row.jietingshichang?row.jietingshichang.toFixed(2):0}}分</td>
|
|
84
|
-
<td style="text-align: center;">{{row.pingjun?row.pingjun.toFixed(2):0}}分</td>
|
|
85
|
-
<td style="text-align: center;">{{row.jietinglv*100}}%</td>
|
|
86
|
-
<td style="text-align: center;">{{row.waibo}}</td>
|
|
87
|
-
<td style="text-align: center;">{{(row.waiboshichang).toFixed(2)}}</td>
|
|
88
|
-
<td style="text-align: center;">{{row.pingjunwaibo.toFixed(2)}}</td>
|
|
89
|
-
<!-- <td style="text-align: center;">总登录时长</td>-->
|
|
90
|
-
<!-- <td style="text-align: center;">总置忙时长</td>-->
|
|
91
|
-
<!-- <td style="text-align: center;">总空闲时长</td>-->
|
|
92
|
-
<td style="text-align: center;">{{row.zixundan}}</td>
|
|
93
|
-
<td style="text-align: center;">{{row.tousudan}}</td>
|
|
94
|
-
<td style="text-align: center;">{{row.baoxiudan}}</td>
|
|
95
|
-
</tr>
|
|
96
|
-
</template>
|
|
97
|
-
</data-grid>
|
|
98
|
-
</div>
|
|
99
|
-
</criteria-paged>
|
|
100
|
-
</div>
|
|
101
|
-
</template>
|
|
102
|
-
<script>
|
|
103
|
-
import {PagedList} from 'vue-client'
|
|
104
|
-
|
|
105
|
-
export default {
|
|
106
|
-
title: '话务员工作量汇总报表',
|
|
107
|
-
data() {
|
|
108
|
-
return {
|
|
109
|
-
model: new PagedList('rs/sql/tel_getTelman_1', 999, {
|
|
110
|
-
startDate: 'this.model.startDate',
|
|
111
|
-
endDate: 'this.model.endDate',
|
|
112
|
-
operator: 'this.model.operator'
|
|
113
|
-
})
|
|
114
|
-
}
|
|
115
|
-
},
|
|
116
|
-
computed: {
|
|
117
|
-
getCondition() {
|
|
118
|
-
return {
|
|
119
|
-
startDate: this.model.startDate,
|
|
120
|
-
endDate: this.model.endDate
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="basic-main" style="height: 100%">
|
|
3
|
+
<criteria-paged :model="model">
|
|
4
|
+
<criteria partial='criteria' @condition-changed='search'>
|
|
5
|
+
<div novalidate class="form-inline auto" partial>
|
|
6
|
+
<div class="form-group">
|
|
7
|
+
<label for="startDate" class="font_normal_body" style="float: none">查询日期:</label>
|
|
8
|
+
<datepicker id="startDate" placeholder="开始日期"
|
|
9
|
+
v-model="model.startDate"
|
|
10
|
+
:value.sync="model.startDate"
|
|
11
|
+
:disabled-days-of-Week="[]"
|
|
12
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
13
|
+
:show-reset-button="reset">
|
|
14
|
+
</datepicker>
|
|
15
|
+
<label for="startDate" class="font_normal_body" style="float: none">结束日期:</label>
|
|
16
|
+
<datepicker id="endDate" placeholder="结束日期"
|
|
17
|
+
v-model="model.endDate"
|
|
18
|
+
:value.sync="model.endDate"
|
|
19
|
+
:disabled-days-of-Week="[]"
|
|
20
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
21
|
+
:show-reset-button="reset">
|
|
22
|
+
</datepicker>
|
|
23
|
+
<label for="operator" class="font_normal_body" style="float: none">操作员</label>
|
|
24
|
+
<input type="text" class="form-control" v-model="model.operator"
|
|
25
|
+
placeholder='操作员'>
|
|
26
|
+
<button class="btn btn-default" @click="search()">查询</button>
|
|
27
|
+
<export-excel class="button_search button_spacing"
|
|
28
|
+
:data="{startDate: this.model.startDate,endDate: this.model.endDate}"
|
|
29
|
+
:field="{'name':'姓名',
|
|
30
|
+
'quanbujieting':'总呼入数',
|
|
31
|
+
'yijie':'来电接听通数',
|
|
32
|
+
'weijie':'未接来电通数',
|
|
33
|
+
'jietingshichang':'呼入总通话时长(分)',
|
|
34
|
+
'pingjun':'呼入平均通话时长(分)',
|
|
35
|
+
'jietinglv':'来电接听率',
|
|
36
|
+
'waibo':'总外呼数',
|
|
37
|
+
'waiboshichang':'外呼总通话时长(分)',
|
|
38
|
+
'pingjunwaibo':'外呼平均通话时长(分)',
|
|
39
|
+
'zixundan':'咨询单',
|
|
40
|
+
'tousudan':'投诉单',
|
|
41
|
+
'baoxiudan':'报修单'}"
|
|
42
|
+
style="margin-top: 20px"
|
|
43
|
+
sqlurl="rs/logic/exportfile" sql-name="tel_getTelman_1" template-name='话务员工作量汇总报表导出'
|
|
44
|
+
:choose-col="true"></export-excel>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
</criteria>
|
|
48
|
+
<div partial='list' id='gongye'>
|
|
49
|
+
<data-grid :model="model" classname="reporttable" partial='list'>
|
|
50
|
+
<template partial='head'>
|
|
51
|
+
<tr>
|
|
52
|
+
<th colspan='14' style="border: 1px solid white; border-bottom: 1px solid black; text-align: center;">
|
|
53
|
+
<h1 align="center">话务员工作量汇总报表</h1>
|
|
54
|
+
</th>
|
|
55
|
+
</tr>
|
|
56
|
+
<tr>
|
|
57
|
+
<th>姓名</th>
|
|
58
|
+
<!-- <th>置忙次数</th>-->
|
|
59
|
+
<th>总呼入数</th>
|
|
60
|
+
<th>来电接听通数</th>
|
|
61
|
+
<th>来电未接听通数</th>
|
|
62
|
+
<th>呼入总通话时长(分)</th>
|
|
63
|
+
<th>呼入平均通话时长(分)</th>
|
|
64
|
+
<th>来电接听率</th>
|
|
65
|
+
<th>总外呼数</th>
|
|
66
|
+
<th>外呼总通话时长(分)</th>
|
|
67
|
+
<th>外呼平均通话时长(分)</th>
|
|
68
|
+
<!-- <th>总登录时长</th>-->
|
|
69
|
+
<!-- <th>总置忙时长</th>-->
|
|
70
|
+
<!-- <th>总空闲时长</th>-->
|
|
71
|
+
<th>咨询单</th>
|
|
72
|
+
<th>投诉单</th>
|
|
73
|
+
<th>报修单</th>
|
|
74
|
+
</tr>
|
|
75
|
+
</template>
|
|
76
|
+
<template partial='body'>
|
|
77
|
+
<tr>
|
|
78
|
+
<td style="text-align: center;">{{row.name}}</td>
|
|
79
|
+
<!-- <td style="text-align: center;">{{row.zhimangcishu}}次</td>-->
|
|
80
|
+
<td style="text-align: center;">{{row.quanbujieting}}</td>
|
|
81
|
+
<td style="text-align: center;">{{row.yijie}}</td>
|
|
82
|
+
<td style="text-align: center;">{{row.weijie}}</td>
|
|
83
|
+
<td style="text-align: center;">{{row.jietingshichang?row.jietingshichang.toFixed(2):0}}分</td>
|
|
84
|
+
<td style="text-align: center;">{{row.pingjun?row.pingjun.toFixed(2):0}}分</td>
|
|
85
|
+
<td style="text-align: center;">{{row.jietinglv*100}}%</td>
|
|
86
|
+
<td style="text-align: center;">{{row.waibo}}</td>
|
|
87
|
+
<td style="text-align: center;">{{(row.waiboshichang).toFixed(2)}}</td>
|
|
88
|
+
<td style="text-align: center;">{{row.pingjunwaibo.toFixed(2)}}</td>
|
|
89
|
+
<!-- <td style="text-align: center;">总登录时长</td>-->
|
|
90
|
+
<!-- <td style="text-align: center;">总置忙时长</td>-->
|
|
91
|
+
<!-- <td style="text-align: center;">总空闲时长</td>-->
|
|
92
|
+
<td style="text-align: center;">{{row.zixundan}}</td>
|
|
93
|
+
<td style="text-align: center;">{{row.tousudan}}</td>
|
|
94
|
+
<td style="text-align: center;">{{row.baoxiudan}}</td>
|
|
95
|
+
</tr>
|
|
96
|
+
</template>
|
|
97
|
+
</data-grid>
|
|
98
|
+
</div>
|
|
99
|
+
</criteria-paged>
|
|
100
|
+
</div>
|
|
101
|
+
</template>
|
|
102
|
+
<script>
|
|
103
|
+
import {PagedList} from 'vue-client'
|
|
104
|
+
|
|
105
|
+
export default {
|
|
106
|
+
title: '话务员工作量汇总报表',
|
|
107
|
+
data() {
|
|
108
|
+
return {
|
|
109
|
+
model: new PagedList('rs/sql/tel_getTelman_1', 999, {
|
|
110
|
+
startDate: 'this.model.startDate',
|
|
111
|
+
endDate: 'this.model.endDate',
|
|
112
|
+
operator: 'this.model.operator'
|
|
113
|
+
})
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
computed: {
|
|
117
|
+
getCondition() {
|
|
118
|
+
return {
|
|
119
|
+
startDate: this.model.startDate,
|
|
120
|
+
endDate: this.model.endDate
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
</script>
|