|
|
@@ -102,6 +102,11 @@
|
|
102
|
102
|
<option value="">请选择工单来源</option>
|
|
103
|
103
|
</select>
|
|
104
|
104
|
</div>
|
|
|
105
|
+ <div class="form-group">
|
|
|
106
|
+ <select class="form-control selectpicker" id="orderType" data-live-search="true">
|
|
|
107
|
+ <option value="">请选择工单类型</option>
|
|
|
108
|
+ </select>
|
|
|
109
|
+ </div>
|
|
105
|
110
|
<div class="time-box form-group">
|
|
106
|
111
|
<i class="tub fa fa-calendar"></i>
|
|
107
|
112
|
<input class="form-control search_time" type="text" id="greetingTimes" placeholder="请选择时间">
|
|
|
@@ -349,6 +354,7 @@
|
|
349
|
354
|
pagesize: params.pageSize,
|
|
350
|
355
|
token: $.cookie("token"),
|
|
351
|
356
|
source: $('#orderSource').val(), //工单来源
|
|
|
357
|
+ type:$("#orderType").val(),
|
|
352
|
358
|
key:$('#keyWord').val(), //内容关键字
|
|
353
|
359
|
workid:$('#orderNum').val(), //内容关键字
|
|
354
|
360
|
starttime: $('#greetingTimes').val() && $('#greetingTimes').val().split(' ~ ')[0], //开始时间
|
|
|
@@ -392,10 +398,9 @@
|
|
392
|
398
|
pagesize: params.pageSize,
|
|
393
|
399
|
token: $.cookie("token"),
|
|
394
|
400
|
source: $('#orderSource').val(), //工单来源
|
|
|
401
|
+ type:$("#orderType").val(),
|
|
395
|
402
|
key:$('#keyWord').val(), //内容关键字
|
|
396
|
403
|
workid:$('#orderNum').val(), //内容关键字
|
|
397
|
|
-// type: $('#orderSource').val(), //工单来源
|
|
398
|
|
-// typeclass: $('#typeclassId').val(), //工单类型
|
|
399
|
404
|
starttime: $('#greetingTimes').val() && $('#greetingTimes').val().split(' ~ ')[0], //开始时间
|
|
400
|
405
|
endtime: $('#greetingTimes').val() && $('#greetingTimes').val().split(' ~ ')[1], //结束时间
|
|
401
|
406
|
userid: $('#userid').val() //坐席
|