this.total是接口返回的总数据量
单条数据删除后,
// 为了在删除最后一页的最后一条数据时能成功跳转回最后一页的上一页
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