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

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

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

  // 为了在删除最后一页的最后一条数据时能成功跳转回最后一页的上一页
        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

猜你喜欢

转载自www.cnblogs.com/wangliko/p/10930708.html