Vue练习-分页

以前用jquery做分页各种dom操作非常痛苦,最近在学习vue终于不用操作dom别提有多舒服了。

下面仿照iview里面的分页组件来实现一个分页 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" href="lib/bootstrap.min.css">
    <script src="lib/vue.js"></script>
</head>
<body>
<div id="app">
    <nav>
        <ul class="pagination">
            <li :class="[currentPage-1<1?'disabled':'']"
                @click.prevent="setCurrentPage(currentPage-1 < 1 ?currentPage:currentPage-1)">
                <a href="#">
                    <span>&laquo;</span>
                </a>
            </li>
            <li v-for="pageObj in showPage()" @click.prevent="setCurrentPage(pageObj.value)"
                :class="[currentPage==pageObj.text?'active':'']" :title="pageObj.title">
                <a href="#" v-text="pageObj.text"></a>
            </li>
            <li :class="[currentPage+1>totalPage?'disabled':'']"
                @click.prevent="setCurrentPage(currentPage+1>totalPage?currentPage:currentPage+1)">
                <a href="#">&raquo;</a>
            </li>

        </ul>
    </nav>
</div>

<script>
    var vm = new Vue({
        el: "#app",
        data: {
            total: 200,
            display: 10,
            currentPage: 1,
            jumpPage: 5,
            ignorePage: 4
        },
        methods: {

            setCurrentPage: function (page) {
                this.currentPage = page
            },
            showPage: function () {
                var pageList = [];
                this.totalPage = this.total / this.display;
                for (var i = 1; i <= this.totalPage; i++) {
                    pageList.push({text: i, value: i, title: i})
                }
                if (this.currentPage - 1 > this.ignorePage) {
                    pageList = pageList.slice(this.currentPage - 3, this.totalPage);
                    pageList.unshift({text: "...", value: this.currentPage - 5, title: "向前5页"});
                    pageList.unshift({text: 1, value: 1});
                }
                if (this.totalPage - this.currentPage > this.ignorePage) {
                    if (this.currentPage - 1 > this.ignorePage) {
                        pageList = pageList.slice(0, 4 + 3);
                    } else {
                        pageList = pageList.slice(0, this.currentPage + 2);
                    }
                    pageList.push({text: "...", value: this.currentPage + 5, title: "向后5页"});
                    pageList.push({text: this.totalPage, value: this.totalPage, title: this.totalPage});
                }
                return pageList
            }
        }
    })
</script>
</body>
</html>

 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值