Commit 91cbc36d authored by guantiantian's avatar guantiantian

添加受理区县查询参数

parent 8e921815
...@@ -92,6 +92,12 @@ angular.module('AvatarCheck.uploadExcelAndSearch', ['ngRoute', 'AvatarCheck.http ...@@ -92,6 +92,12 @@ angular.module('AvatarCheck.uploadExcelAndSearch', ['ngRoute', 'AvatarCheck.http
}else { }else {
json.district=$("#district").val() ; json.district=$("#district").val() ;
} }
if ($("#gk").val() == "") {
json.gk = -1
} else {
json.gk = $("#gk").val()
}
if(angular.isUndefined($scope.emailNo)){ if(angular.isUndefined($scope.emailNo)){
json.emailNo = '' json.emailNo = ''
}else{ }else{
...@@ -156,6 +162,11 @@ angular.module('AvatarCheck.uploadExcelAndSearch', ['ngRoute', 'AvatarCheck.http ...@@ -156,6 +162,11 @@ angular.module('AvatarCheck.uploadExcelAndSearch', ['ngRoute', 'AvatarCheck.http
}else { }else {
json.district=$("#district").val() ; json.district=$("#district").val() ;
} }
if ($("#gk").val() == "") {
json.gk = -1
} else {
json.gk = $("#gk").val()
}
if(angular.isUndefined($scope.emailNo)){ if(angular.isUndefined($scope.emailNo)){
json.emailNo = '' json.emailNo = ''
}else{ }else{
...@@ -250,6 +261,11 @@ angular.module('AvatarCheck.uploadExcelAndSearch', ['ngRoute', 'AvatarCheck.http ...@@ -250,6 +261,11 @@ angular.module('AvatarCheck.uploadExcelAndSearch', ['ngRoute', 'AvatarCheck.http
}else { }else {
url = url + 'district=-1&'; url = url + 'district=-1&';
} }
if ($("#gk").val() != "") {
url = url + "gk=" + $("#gk").val() + "&"
} else {
url = url + "gk=-1&"
}
if(angular.isUndefined($scope.emailNo)){ if(angular.isUndefined($scope.emailNo)){
url = url + 'emailNo=&'; url = url + 'emailNo=&';
}else{ }else{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment