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 () { // 获取分页页码
      //开始时count为2,center为1
        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);//查询下标,找不到返回-1
        (idx < count) && ( center = center + count - idx);//开始时经过这步运算后center等于3(1+2-0)
        (this.current > this.page - count) && ( center = this.page - count);//当this.current 大于this.page - count时,center 等于 this.page - count
        temp = temp.splice(center - count - 1, this.pagegroup);//slice是求得数组中的某一块,参数是下标范围。
        do {
          var t = temp.shift();//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 大于count + 1时,后面的代码才会执行
          (this.current < this.page - count) && list.push({text: '...', val: list[list.length - 1].val + 1});
        }//this.current 小于 this.page - count时,才会push进省略符(...)
        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 lang="less">
  .pagination {
    overflow: hidden;
    display: table;
    margin: 0 auto;
    /*width: 100%;*/
    height: 50px;

  li {
    float: left;
    height: 30px;
    border-radius: 5px;
    margin: 3px;
    color: #666;

  &
  :hover {
    background: #000;

  a {
    color: #fff;
  }

  }
  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;

  a {
    color: #fff;
  }

  }
  }

</style>

转载一个大佬的文章,原文地址:https://www.cnblogs.com/yuqing6/p/7061647.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Vue分页组件是一种可以在不同页面中重复使用的组件,它可以用来展示数据列表并进行分页操作。通过将分页逻辑和样式封装在一个组件中,我们可以在多个页面中使用相同的分页功能。这样可以提高代码的复用性和开发效率。 例如,我们可以创建一个名为"Pagination"的Vue组件,它包含了分页所需的逻辑和样式。然后,在需要进行分页的页面中,我们只需要引入这个组件并传递相应的参数,就可以实现分页功能。 在具体实现上,我们可以将分页组件的状态和方法封装在组件的内部,通过props属性来接收父组件传递的数据和事件。这样,我们可以通过改变父组件传递的数据来更新分页组件的状态,并通过触发父组件的事件来响应用户的分页操作。 总结来说,Vue分页组件的复用可以通过封装分页逻辑和样式,使用props属性接收父组件传递的数据和事件来实现。这样我们可以在不同的页面中使用相同的分页组件,提高代码的复用性和开发效率。 <span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [Vue组件复用问题的一个解决方法](https://blog.csdn.net/weixin_45764765/article/details/123540122)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值