vue element-ui分页删除最后一页的最后一条数据,返回上一页
1.默认当前页为第一页,页容量为10条data(){return{current:1,size:10}}2.再点击删除的时候进行如下配置// 为了在删除最后一页的最后一条数据时能成功跳转回最后一页的上一页(pageSize=1时不生效)let totalPage = Math.ceil((this.total - 1) / this.size)let currentPage =this.
·
1.默认当前页为第一页,页容量为10条
data(){
return{
current:1,
size:10
}
}
2.再点击删除的时候进行如下配置
// 为了在删除最后一页的最后一条数据时能成功跳转回最后一页的上一页(pageSize=1时不生效)
let totalPage = Math.ceil((this.total - 1) / this.size)
let currentPage =this.current > totalPage ? totalPage : this.current
this.current = currentPage < 1 ? 1 : currentPage
更多推荐
已为社区贡献8条内容
所有评论(0)