foot-pager.hbs 1 KB
{{# footPager}}

    <div class="foot-pager clearfix" data-total={{../totalCount}}>
        <span class="total">
            {{# tip}}
                {{#if totalText}}
                    {{totalText}}
                {{^}}
                    {{start}} - {{end}} / 共{{total}}件商品
                {{/if}}
            {{/ tip}}
        </span>

        <div class="pager">
            {{# prePage}}
                <a href="{{url}}"{{#if @root.pageNoFollow}} rel="nofollow"{{/if}} title="上一页"><span class="iconfont">&#xe60e;</span>上一页</a>
            {{/ prePage}}

            {{# pages}}
                <a{{#if url}} href="{{url}}"{{/if}}{{#if cur}} class="cur"{{/if}}{{#if @root.pageNoFollow}} rel="nofollow"{{/if}}>{{num}}</a>
            {{/ pages}}

            {{# nextPage}}
                <a href="{{url}}"{{#if @root.pageNoFollow}} rel="nofollow"{{/if}} title="下一页">下一页<span class="iconfont">&#xe60c;</span></a>
            {{/ nextPage}}
        </div>
    </div>
{{/ footPager}}