Blame view

doraemon/views/partial/common/foot-pager.hbs 1 KB
yyq authored
1
{{# footPager}}
陈轩 authored
2
3
    <div class="foot-pager clearfix" data-total={{../totalCount}}>
郭成尧 authored
4 5 6 7 8 9 10 11 12
        <span class="total">
            {{# tip}}
                {{#if totalText}}
                    {{totalText}}
                {{^}}
                    {{start}} - {{end}} / 共{{total}}件商品
                {{/if}}
            {{/ tip}}
        </span>
yyq authored
13 14 15

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

            {{# pages}}
yyq authored
20
                <a{{#if url}} href="{{url}}"{{/if}}{{#if cur}} class="cur"{{/if}}{{#if @root.pageNoFollow}} rel="nofollow"{{/if}}>{{num}}</a>
yyq authored
21
            {{/ pages}}
22
yyq authored
23
            {{# nextPage}}
yyq authored
24
                <a href="{{url}}"{{#if @root.pageNoFollow}} rel="nofollow"{{/if}} title="下一页">下一页<span class="iconfont">&#xe60c;</span></a>
yyq authored
25 26 27
            {{/ nextPage}}
        </div>
    </div>
28
{{/ footPager}}