Vue——使用vuetify分页组件实现分页效果

一般后台管理系统列表都需要做分页效果的,方便用户的信息查看,因为我们项目是用vuetify,所以就使用了vuetify中的分页组件 v-pagination

index.vue:

<v-pagination
     v-if="Math.ceil(totalPage / limit) > 1"
     class="pagination"
     v-model="curPage"
     :length="Math.ceil(totalPage / limit)"
     total-visible="7"
     @input="onPageChange(curPage, limit)"
   ></v-pagination>


export default {
  name: "SourceList",
  data() {
    return {
      curPage: 1,
      limit: 10,
      totalPage: 0,
      sheet_editor: null,
      current_id: null,
      show_confirm: null,
      readonly: null,
      sources: []
    };
  },
  created(){
	this.refreshList();
  },
  methods:{
	onPageChange(curPage, limit) {
     	this.refreshList(curPage, limit);
   	},
	refreshList(curPage = 1, limit = 10) {
      return this.$http
        .get(`api/list?offset=${(curPage - 1) * limit}&limit=${limit}`)
        .delegateTo(api_request)
        .then(res => {
          this.totalPage = res.total;
          this.sources = res.sources;
        });
    }
  }
}

注意:
如果分页中的length属性值是小数的话,就会报错提示:invalid property

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值