### 分页模板函数,三个参数含义分别为:当前页、总页数,分页前方的链接 ### 具体用法在 jfinal-club 中有很多 #define adminPaginate_banner(currentPage, totalPage, link) #if(totalPage < 2 || currentPage > totalPage) #return #end #setLocal(startPage = currentPage - 3) #if(startPage < 1) #setLocal(startPage = 1) #end #setLocal(endPage = currentPage + 3) #if(endPage > totalPage) #setLocal(endPage = totalPage) #end #end