|
|
@@ -123,7 +123,7 @@
|
|
123
|
123
|
}
|
|
124
|
124
|
|
|
125
|
125
|
.selects {
|
|
126
|
|
- width: 105px;
|
|
|
126
|
+ width: 100px;
|
|
127
|
127
|
}
|
|
128
|
128
|
|
|
129
|
129
|
.tc {
|
|
|
@@ -133,6 +133,9 @@
|
|
133
|
133
|
|
|
134
|
134
|
.seach-box ul {
|
|
135
|
135
|
padding-left: 0;
|
|
|
136
|
+ }
|
|
|
137
|
+ .seach-box ul li {
|
|
|
138
|
+ margin-bottom: 5px;
|
|
136
|
139
|
}
|
|
137
|
140
|
/*.seach-box input{
|
|
138
|
141
|
width: 122px;
|
|
|
@@ -189,6 +192,7 @@
|
|
189
|
192
|
<option value="1">正常通话</option>
|
|
190
|
193
|
<option value="2">转移</option>
|
|
191
|
194
|
<option value="3">三方通话</option>
|
|
|
195
|
+ <option value="4">转接</option>
|
|
192
|
196
|
</select>
|
|
193
|
197
|
</li>
|
|
194
|
198
|
<li>
|
|
|
@@ -205,6 +209,20 @@
|
|
205
|
209
|
<option value="">全部</option>
|
|
206
|
210
|
</select>
|
|
207
|
211
|
</li>
|
|
|
212
|
+
|
|
|
213
|
+ <li>
|
|
|
214
|
+ 转接地:
|
|
|
215
|
+ <select style="width: 100px;" class="x-color select usercode" id="transferplace">
|
|
|
216
|
+ <option value="">全部</option>
|
|
|
217
|
+ <option value="永城">永城</option>
|
|
|
218
|
+ <option value="柘城">柘城</option>
|
|
|
219
|
+ <option value="睢县">睢县</option>
|
|
|
220
|
+ <option value="夏邑">夏邑</option>
|
|
|
221
|
+ <option value="宁陵">宁陵</option>
|
|
|
222
|
+ <option value="民权">民权</option>
|
|
|
223
|
+ <option value="虞城">虞城</option>
|
|
|
224
|
+ </select>
|
|
|
225
|
+ </li>
|
|
208
|
226
|
<li>分机号:<input id="extnumber" class="photo x-color" type="text" /></li>
|
|
209
|
227
|
<li>
|
|
210
|
228
|
满意度:
|
|
|
@@ -238,6 +256,7 @@
|
|
238
|
256
|
<th data-field="CallState" data-formatter="states" data-align="center">呼叫状态</th>
|
|
239
|
257
|
<th data-field="ActionType" data-formatter="ActionType" data-align="center">呼叫类型</th>
|
|
240
|
258
|
<th data-field="TypeName" data-align="center">通话类型</th>
|
|
|
259
|
+ <th data-field="City" data-align="center">转接地</th>
|
|
241
|
260
|
<th data-field="MYD" data-align="center" data-formatter="MYD">满意度</th>
|
|
242
|
261
|
<th data-field="UserCode" data-align="center">坐席工号</th>
|
|
243
|
262
|
<th data-field="UserName" data-align="center">坐席姓名</th>
|
|
|
@@ -419,6 +438,7 @@
|
|
419
|
438
|
param.actiontype = $("#ss_HJLX").val();//呼叫类型
|
|
420
|
439
|
param.tasktype = $("#sf_hf").val();//呼叫类型
|
|
421
|
440
|
param.extnumber=$("#extnumber").val();
|
|
|
441
|
+ param.city = $("#transferplace").val();
|
|
422
|
442
|
param.MYD=$("#MYD").val(); //满意度
|
|
423
|
443
|
} else if (stype == '2') {
|
|
424
|
444
|
//高级搜索项目里暂时没有到
|
|
|
@@ -503,7 +523,9 @@
|
|
503
|
523
|
}
|
|
504
|
524
|
else if (val == 3) {
|
|
505
|
525
|
return '<div class="imgs">三方通话</div>';
|
|
506
|
|
- }
|
|
|
526
|
+ } else if(val == 4){
|
|
|
527
|
+ return '<div class="imgs">转接</div>';
|
|
|
528
|
+ }
|
|
507
|
529
|
else {
|
|
508
|
530
|
return '<div class="imgs">正常通话</div>';
|
|
509
|
531
|
}
|