修改参数

This commit is contained in:
sunxin 2019-03-02 18:24:57 +08:00
parent 5a7221b1ec
commit 2443a80c3d
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ public class SearchAction extends BaseAction {
pre = 1; pre = 1;
}else{ }else{
next = pageNo+1; next = pageNo+1;
pre = pageNo+1; pre = pageNo ==1 ? 1 : pageNo+1;
} }
String url = BasicUtil.getUrl() + request.getServletPath() +"?"; String url = BasicUtil.getUrl() + request.getServletPath() +"?";
String pageNoStr = "&"+ParserUtil.PAGE_NO+"="; String pageNoStr = "&"+ParserUtil.PAGE_NO+"=";