|
|
@@ -39,20 +39,12 @@ public class PortalSearchController extends BaseController {
|
|
|
@Resource
|
|
|
private OrganizationIdentityService organizationIdentityService;
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
/**
|
|
|
* 用户搜索
|
|
|
*/
|
|
|
@RequestMapping(value = "/subscriberList", method = RequestMethod.GET)
|
|
|
public Result subscriberSearchList(HttpServletRequest req,String name, Integer level, Integer type, String field, Integer province,
|
|
|
- Integer city, Integer area,Integer international, String pageNo, String pageSize) {
|
|
|
+ Integer city, Integer area,Integer international, String pageNo, String pageSize, Integer auditStatus) {
|
|
|
Result res = new Result();
|
|
|
String url=req.getServerName();
|
|
|
url=url.substring(url.indexOf(".")+1, url.length());
|
|
|
@@ -68,9 +60,7 @@ public class PortalSearchController extends BaseController {
|
|
|
field=null;
|
|
|
}
|
|
|
if(province ==null || province.intValue()<=0)province=null;
|
|
|
-
|
|
|
- res.setData(userIdentityService.listSubscriber(url,name, level, field, province, city, area, international, pNo, pSize));
|
|
|
-
|
|
|
+ res.setData(userIdentityService.listSubscriber(url,name, level, field, province, city, area, international, pNo, pSize,auditStatus));
|
|
|
return res;
|
|
|
}
|
|
|
|