码迷,mamicode.com
首页 > 其他好文 > 详细

vue 分页删除最后一条数据,返回上一级的分页

时间:2019-05-27 15:07:16      阅读:396      评论:0      收藏:0      [点我收藏+]

标签:style   span   组件   成功   技术   博客   mat   count   src   

技术图片

我分页封装的组件,具体代码可以查看我之前的博客,这里直接上代码

在删除事件里面,删除成功加入这段代码

  // 为了在删除最后一页的最后一条数据时能成功跳转回最后一页的上一页
        const totalPage = Math.ceil((this.count - 1) / this.pageSize) // 总页数
        this.currentPage = this.currentPage > totalPage ? totalPage : this.currentPage
        this.currentPage = this.currentPage < 1 ? 1 : this.currentPage

 

vue 分页删除最后一条数据,返回上一级的分页

标签:style   span   组件   成功   技术   博客   mat   count   src   

原文地址:https://www.cnblogs.com/wangliko/p/10930708.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!