diff --git a/src/components/pagination/nz-pagination.component.ts b/src/components/pagination/nz-pagination.component.ts index 3a320c3c773..de75d2e0309 100644 --- a/src/components/pagination/nz-pagination.component.ts +++ b/src/components/pagination/nz-pagination.component.ts @@ -254,7 +254,8 @@ export class NzPaginationComponent { _buildIndexes() { this._lastIndex = Math.ceil(this._total / this._pageSize); if (this._current > this._lastIndex) { - this._jumpPage(this._lastIndex); + this.nzPageIndex = this._lastIndex; + this.nzPageIndexChange.emit(this.nzPageIndex); } const tmpPages = []; if (this._lastIndex <= 9) {