|
@@ -250,7 +250,7 @@ $(function(){
|
|
|
mids(1,pageNos);
|
|
|
})
|
|
|
//智者数据交互
|
|
|
- var theKeyword, theFieldA, theFieldB, theFieldC;
|
|
|
+ var theKeyword, theFieldA, theFieldB, theFieldC,province;
|
|
|
var thePageNo = 1,
|
|
|
thePageLength = 1,
|
|
|
pageSize = 12,
|
|
@@ -264,6 +264,7 @@ $(function(){
|
|
|
dataType: "json",
|
|
|
url: globalConfig.context + "/portal/search/subscriberList",
|
|
|
data: {
|
|
|
+ province:province,
|
|
|
pageNo: pageNo || 1,
|
|
|
pageSize: pageSize,
|
|
|
type: theType,
|
|
@@ -447,8 +448,9 @@ $(function(){
|
|
|
});
|
|
|
$('.searchs button').click(function (e) {
|
|
|
e.preventDefault();
|
|
|
- theKeyword = $('#search_on input').val();
|
|
|
-
|
|
|
+ theKeyword = $('#search_on input').val();
|
|
|
+ province = $('#selt option:checked').attr('value');
|
|
|
+ province=province
|
|
|
loadDate();
|
|
|
});
|
|
|
$('.pagination').on('click', 'li', function (e) {
|