vue 分页删除最后一条数据,返回上一级的分页
我分页封装的组件,具体代码可以查看我之前的博客,这里直接上代码在删除事件里面,删除成功加入这段代码// 为了在删除最后一页的最后一条数据时能成功跳转回最后一页的上一页const totalPage = Math.ceil((this.count - 1) / this.pageSize) // 总页数this.currentPage = this.cur...
·
我分页封装的组件,具体代码可以查看我之前的博客,这里直接上代码
在删除事件里面,删除成功加入这段代码
// 为了在删除最后一页的最后一条数据时能成功跳转回最后一页的上一页
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
更多推荐
已为社区贡献1条内容
所有评论(0)