Vue实现分页组件

Vue实现分页组件

  • 实现:使用vue实现表格的分页功能
  • 功能点:
    1. 点击页面序号可以跳转到相应页面
    2. 点击上一页或者下一页可以跳转页面,当页面在第一页时上一页无法点击,页面在最后一页时下一页无法点击。
    3. 始终显示第一页和最后一页,只有一页的时候显示一页
    4. 默认显示前五页,剩下的用…显示,若点击下一页,则前后都有…显示
  • 注意:该项目是使用 vue-cli搭建的,分页的功能操作都是在子组件里面写的,通过父子组件传值。
  • 子组件:pagination.vue
<template>
  <nav>
    <ul class="pagination">
      <li :class="{'disabled': current == 1}"><a href="javascript:;" @click="setCurrent(current - 1)"> « </a></li>
      <li :class="{'disabled': current == 1}"><a href="javascript:;" @click="setCurrent(1)"> 首页 </a></li>
      <li v-for="p in grouplist" :class="{'active': current == p.val}"><a href="javascript:;"
                                                                          @click="setCurrent(p.val)"> {{ p.text }} </a>
      </li>
      <li :class="{'disabled': current == page}"><a href="javascript:;" @click="setCurrent(page)"> 尾页 </a></li>
      <li :class="{'disabled': current == page}"><a href="javascript:;" @click="setCurrent(current + 1)"> »</a></li>
    </ul>
  </nav>
</template>

<script type="es6">
  export default{
    data(){
      return {
        current: this.currentPage //当前页码
      }
    },
    props: {
      total: {// 数据总条数
        type: Number,
        default: 0
      },
      display: {// 每页显示条数
        type: Number,
        default: 10
      },
      currentPage: {// 当前页码
        type: Number,
        default: 1
      },
      pagegroup: {// 分页条数,默认显示的
        type: Number,
        default: 5,
        coerce: function (v) {
          v = v > 0 ? v : 5;
          return v % 2 === 1 ? v : v + 1;
        }
      }
    },
    computed: {
      page: function () { // 总页数
        return Math.ceil(this.total / this.display); //对浮点数向上取整
      },
      grouplist: function () { // 获取分页页码(多少个页) Math.floor对浮点数向下取整
        var len = this.page, temp = [], list = [], count = Math.floor(this.pagegroup / 2), center = this.current; //当前页码
        if (len <= this.pagegroup) {
          while (len--) {
            temp.push({text: this.page - len, val: this.page - len});
          }; 
          return temp;
        }
        while (len--) {
          temp.push(this.page - len);
        }
        ;
        var idx = temp.indexOf(center);
        (idx < count) && ( center = center + count - idx);
        (this.current > this.page - count) && ( center = this.page - count);
        temp = temp.splice(center - count - 1, this.pagegroup);
        do {
          var t = temp.shift();
          list.push({
            text: t,
            val: t
          });
        } while (temp.length);
        if (this.page > this.pagegroup) {
          (this.current > count + 1) && list.unshift({text: '...', val: list[0].val - 1});
          (this.current < this.page - count) && list.push({text: '...', val: list[list.length - 1].val + 1});
        }
        return list;
      }
    },
    methods: {
      setCurrent: function (idx) {
        if (this.current != idx && idx > 0 && idx < this.page + 1) {
          this.current = idx;
          this.$emit('pagechange', this.current);
        }
      }
    }
  }
</script>

<style>
  .pagination {
    overflow: hidden;
    display: table;
    margin: 0 auto;
    /*width: 100%;*/
    height: 50px;
}
 .pagination li {
    float: left;
    height: 30px;
    border-radius: 5px;
    margin: 3px;
    color: #666;
}
 .pagination li 
  :hover {
    background: #000;
}
  a {
    color: red;
  }


 .pagination li a {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    border-radius: 5px;
    text-decoration: none }


  .active {
    background: #000;
}
 .active a {
    color: red;
  }

</style>
  • 父组件:pagingparent.vue
<template>
        <v-pagination :total="total" :current-page='current' @pagechange="pagechange"></v-pagination>
</template>

<script type="es6">
  import pagination from '@/components/common/pagination/pagination'
export default{
data(){
 return {
        total: 150,     // 记录总条数
        display: 10,   // 每页显示条数
        current: 1,   // 当前的页数
    }
},
 methods: {
     pagechange:function(currentPage){
       console.log(currentPage);
       // ajax请求, 向后台发送 currentPage, 来获取对应的数据

     }
   },
components: {
      'v-pagination': pagination,
    }
}
</script>

猜你喜欢

转载自blog.csdn.net/Amanda_wmy/article/details/80003875