``
const totalPage = Math.ceil((this.pagination.total - 1) / this.pagination.pageSize)
this.pagination.current = this.pagination.current > totalPage ? totalPage : this.pagination.current
this.pagination.current = this.pagination.current < 1 ? 1 : this.pagination.current