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.current > totalPage ? totalPage : this.current
          this.current = currentPage < 1 ? 1 : currentPage

猜你喜欢

转载自blog.csdn.net/m0_46693606/article/details/124473582