系统内置的完整分页条{page:bar} 如何修改里面的文字等
其实针对这个问题是肯定可以修改的:
apps/admin/view/default/layui/lay/modules/laypage.js
但是同时,分页这块不建议去改动程序,后台和前台是共用。【因为更新程序后,会替换掉修改的PHP文件】
可以前台组合使用分页条,然后修改样式。例如:
可以前台组合使用分页条,然后修改样式。例如:
<!-- 分页 --> {pboot:if({page:rows}>0)} <div class="pagebar"> <div class="pagelist"> <a class="page-item page-link" href="{page:index}" rel="external nofollow" >首页</a> <a class="page-item page-link" href="{page:pre}" rel="external nofollow" >上一页</a> {page:numbar}<!-- 数字条,小屏幕时自动隐藏--> <a class="page-item page-link" href="{page:next}" rel="external nofollow" >下一页</a> <a class="page-item page-link" href="{page:last}" rel="external nofollow" >尾页</a> </div> </div> {else} <div class="pagebar" style="text-align: center;">未查询到任何数据!</div> {/pboot:if}
分页点亮class名:page-num-current