|
|
@@ -114,7 +114,8 @@
|
|
114
|
114
|
<option value="">请选择产品类别</option>
|
|
115
|
115
|
</select>
|
|
116
|
116
|
</div>
|
|
117
|
|
- <div class="time-box form-group">
|
|
|
117
|
+
|
|
|
118
|
+ <!--<div class="time-box form-group">
|
|
118
|
119
|
<i class="tub fa fa-caret-down down" style="color: #676b6d;"></i>
|
|
119
|
120
|
<input class="form-control" type="text" id="typeclass" placeholder="请选择城市" readonly="readonly">
|
|
120
|
121
|
<input type="text" class="inps2">
|
|
|
@@ -126,12 +127,15 @@
|
|
126
|
127
|
|
|
127
|
128
|
</ul>
|
|
128
|
129
|
</div>
|
|
129
|
|
- </div>
|
|
|
130
|
+ </div>-->
|
|
130
|
131
|
<div class="time-box form-group">
|
|
131
|
132
|
<i class="tub fa fa-calendar"></i>
|
|
132
|
133
|
<input class="form-control search_time" type="text" id="greetingTimes" placeholder="请选择时间">
|
|
133
|
134
|
</div>
|
|
134
|
135
|
<div class="time-box form-group">
|
|
|
136
|
+ <input class="form-control" type="text" id="cityName" placeholder="请输入城市">
|
|
|
137
|
+ </div>
|
|
|
138
|
+ <div class="time-box form-group">
|
|
135
|
139
|
<input class="form-control" type="text" id="keyWord" placeholder="请输入关键字">
|
|
136
|
140
|
</div>
|
|
137
|
141
|
<div class="time-box form-group">
|
|
|
@@ -574,8 +578,8 @@
|
|
574
|
578
|
token: $.cookie("token"),
|
|
575
|
579
|
source: $('#orderSource').val(), //工单来源
|
|
576
|
580
|
producttype:$('#productTypeFilt').val(), //产品类别
|
|
577
|
|
- province:$(".inps2").val(),
|
|
578
|
|
- city:$(".inps3").val(),
|
|
|
581
|
+// province:$(".inps2").val(),
|
|
|
582
|
+ city:$("#cityName").val(),
|
|
579
|
583
|
type:$("#orderType").val(), //工单类型
|
|
580
|
584
|
key:$('#keyWord').val(), //内容关键字
|
|
581
|
585
|
workid:$('#orderNum').val(), //工单号
|
|
|
@@ -623,8 +627,9 @@
|
|
623
|
627
|
source: $('#orderSource').val(), //工单来源
|
|
624
|
628
|
type:$("#orderType").val(), //工单类型
|
|
625
|
629
|
producttype:$('#productTypeFilt').val(), //产品类别
|
|
626
|
|
- province:$(".inps2").val(),
|
|
627
|
|
- city:$(".inps3").val(),
|
|
|
630
|
+// province:$(".inps2").val(),
|
|
|
631
|
+ city:$("#cityName").val(),
|
|
|
632
|
+// city:$(".inps3").val(),
|
|
628
|
633
|
key:$('#keyWord').val(), //内容关键字
|
|
629
|
634
|
workid:$('#orderNum').val(), //内容关键字
|
|
630
|
635
|
starttime: $('#greetingTimes').val() && $('#greetingTimes').val().split(' ~ ')[0], //开始时间
|
|
|
@@ -651,8 +656,7 @@
|
|
651
|
656
|
url += "&source=" + $("#orderSource").val();//工单来源
|
|
652
|
657
|
url += "&type=" + $("#orderType").val();//工单类型
|
|
653
|
658
|
url += "&producttype=" + $('#productTypeFilt').val();//产品类别
|
|
654
|
|
- url += "&province=" + $('.inps2').val();//省
|
|
655
|
|
- url += "&city=" + $('.inps3').val();//市
|
|
|
659
|
+ url += "&city=" + $('#cityName').val();//市
|
|
656
|
660
|
url += "&key=" + $('#keyWord').val();//关键词
|
|
657
|
661
|
url += "&workid=" + $('#orderNum').val();//关键词
|
|
658
|
662
|
url += "&starttime=" + ($("#greetingTimes").val() && $("#greetingTimes").val().split(' ~ ')[0]);//开始时间
|