111
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
614 B

  1. <!-- 分页 -->
  2. {pboot:if({page:rows}>0)}
  3. <nav aria-label="page navigation" class="my-4">
  4. <div class="pagination justify-content-center">
  5. <a class="page-item page-link" href="{page:index}">首页</a>
  6. <a class="page-item page-link" href="{page:pre}">上一页</a>
  7. {page:numbar}<!-- 数字条,小屏幕时自动隐藏-->
  8. <a class="page-item page-link" href="{page:next}">下一页</a>
  9. <a class="page-item page-link" href="{page:last}">尾页</a>
  10. </div>
  11. </nav>
  12. {else}
  13. <div class="text-center my-5 text-secondary">本分类下无任何数据!</div>
  14. {/pboot:if}