|
|
@@ -629,11 +629,12 @@ function getOldList() {
|
|
629
|
629
|
queryParamsType: "undefined",
|
|
630
|
630
|
queryParams: function queryParams(params) { //设置查询参数
|
|
631
|
631
|
var param = {
|
|
632
|
|
- page: params.pageNumber,
|
|
|
632
|
+ pageindex: params.pageNumber,
|
|
633
|
633
|
pagesize: params.pageSize,
|
|
634
|
634
|
tel: phoneNumber,
|
|
635
|
635
|
starttime: $("#old_startTime").val(),
|
|
636
|
636
|
endtime: $("#old_endTime").val(),
|
|
|
637
|
+ cusphone: $("#con_phTel").val(),
|
|
637
|
638
|
token: $.cookie("token")
|
|
638
|
639
|
|
|
639
|
640
|
};
|
|
|
@@ -656,7 +657,7 @@ function getComplainList() {
|
|
656
|
657
|
//初始化表格,动态从服务器加载数据
|
|
657
|
658
|
$("#orderlist").bootstrapTable({
|
|
658
|
659
|
method: "get", //使用get请求到服务器获取数据
|
|
659
|
|
- url: huayi.config.callcenter_url + "WorkOrder/GetList", //获取数据的Servlet地址
|
|
|
660
|
+ url: huayi.config.callcenter_url + "WorkOrderNew/GetList", //获取数据的Servlet地址
|
|
660
|
661
|
contentType: 'application/x-www-form-urlencoded',
|
|
661
|
662
|
striped: true, //表格显示条纹
|
|
662
|
663
|
pagination: true, //启动分页
|
|
|
@@ -672,12 +673,14 @@ function getComplainList() {
|
|
672
|
673
|
queryParamsType: "undefined",
|
|
673
|
674
|
queryParams: function queryParams(params) { //设置查询参数
|
|
674
|
675
|
var param = {
|
|
675
|
|
- page: params.pageNumber,
|
|
|
676
|
+ pageindex: params.pageNumber,
|
|
676
|
677
|
pagesize: params.pageSize,
|
|
677
|
678
|
keyword: phoneNumber, //否 string 模糊搜索可输入客户姓名,电话,工单号,反馈内容
|
|
678
|
679
|
starttime: $("#con_startTime").val(), //否 string 工单起止时间
|
|
|
680
|
+ cusphone: phoneNumber,
|
|
679
|
681
|
endtime: $("#con_endTime").val(), //否 string 工单起止时间
|
|
680
|
682
|
token: $.cookie("token"),
|
|
|
683
|
+ // cusphone: $("#con_phone").val(),
|
|
681
|
684
|
};
|
|
682
|
685
|
return param;
|
|
683
|
686
|
},
|
|
|
@@ -1559,21 +1562,14 @@ function screen() {
|
|
1559
|
1562
|
result = $.parseJSON(result);
|
|
1560
|
1563
|
if(result.state.toLowerCase() == "success") {
|
|
1561
|
1564
|
debugger
|
|
1562
|
|
- alert($('#laishi').val());
|
|
1563
|
1565
|
// top.workcount();
|
|
1564
|
1566
|
$('#kehudian').val($('#head_form_customTel').val()); //客户电话
|
|
1565
|
1567
|
$('#kehuxing').val($('#head_form_custom').val()); //公司姓名
|
|
1566
|
|
- $('#gonsi').val($('#company_name').val()); //公司名称
|
|
1567
|
|
- // $('#sheng').val($('#laisheng').val()); //省 赋值到工单事发地
|
|
1568
|
|
-
|
|
|
1568
|
+ $('#gonsi').val($('#company_name').val()); //公司名称
|
|
1569
|
1569
|
$("#sheng option:selected").text($("#laisheng option:selected").text()); //省 赋值到工单事发地
|
|
1570
|
|
- $('#sheng option:selected').val($("#laisheng option:selected").val());
|
|
1571
|
|
-
|
|
|
1570
|
+ $('#sheng option:selected').val($("#laisheng option:selected").val());
|
|
1572
|
1571
|
$('#shi option:selected').text($("#laishi option:selected").text()); // 市
|
|
1573
|
|
- $('#shi option:selected').val($("#laishi option:selected").val());
|
|
1574
|
|
- alert($('#shi').val());
|
|
1575
|
|
- // alert($('#shi').val($("#laishi option:selected").val()));
|
|
1576
|
|
-
|
|
|
1572
|
+ $('#shi option:selected').val($("#laishi option:selected").val());
|
|
1577
|
1573
|
$('#quxian option:selected').text($("#laiquxian option:selected").text()); // 县/区
|
|
1578
|
1574
|
$('#quxian option:selected').val($("#laiquxian option:selected").val());
|
|
1579
|
1575
|
|