mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
25 lines
667 B
C#
25 lines
667 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
@*<nz-select
|
|
class="ant-pagination-options-size-changer"
|
|
*ngIf="showSizeChanger"
|
|
[nzDisabled]="disabled"
|
|
[nzSize]="nzSize"
|
|
[ngModel]="pageSize"
|
|
(ngModelChange)="onPageSizeChange($event)"
|
|
>
|
|
<nz-option
|
|
*ngFor="let option of listOfPageSizeOption; trackBy: trackByOption"
|
|
[nzLabel]="option.label"
|
|
[nzValue]="option.value"
|
|
></nz-option>
|
|
</nz-select>*@
|
|
@if (ShowQuickJumper)
|
|
{
|
|
<div class="ant-pagination-options-quick-jumper">
|
|
跳转到第
|
|
<input disabled="@Disabled" @bind="_inputValue" @onkeyup="JumpToPageViaInput"/>
|
|
页
|
|
</div>
|
|
} |