element-ui删除最后一页的数据时,如何让它自动返回到上一页

this.total是接口返回的总数据量element-ui删除最后一页的数据时,如何让它自动返回到上一页_第1张图片

 单条数据删除后,

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


 

你可能感兴趣的:(element-ui删除最后一页的数据时,如何让它自动返回到上一页)