前言

我会不定期的查看大家的搜索词,看到一些问题单独列出来给大家做一下解答。

今天看到一个网友需要解决当列表也只有1页的时候不显示分页的方法。

安排。

代读手册

先来一段广告,代读PbootCms手册,9块9一次。

分页条标签

image.png

page:count 表示总页数,我们只需要加一个判断,当总页数大于1的时候显示分页条就搞定啦。

参考代码

{pboot:pre}

{pboot:if({page:rows}>0)}
{pboot:1if({page:count}>1)}首页上一页{page:numbar}下一页尾页{/pboot:1if}
{else}No data.{/pboot:if}

{/pboot:pre}

搞定,收工。