const pageNum = Math.ceil(thiis.total / this.pageSize);
const currentPage = pageNum > this.pageNum ? this.pageNum : pageNum;
this.pageNum = currentPage < 1 ? 1 : currentPage;