mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
19 lines
460 B
C#
19 lines
460 B
C#
|
@namespace AntBlazor
|
|||
|
|
|||
|
<PaginationItem
|
|||
|
Disabled="_isFirstIndex"
|
|||
|
OnClick="_=>PrePage()"
|
|||
|
Type="prev"
|
|||
|
/>
|
|||
|
|
|||
|
<li title="@(PageIndex + '/' + _lastIndex)" class="ant-pagination-simple-pager">
|
|||
|
<input disabled="@Disabled" @bind="@_inputValue" @onkeyup="JumpToPageViaInput" size="3" />
|
|||
|
<span class="ant-pagination-slash">/</span>
|
|||
|
@_lastIndex
|
|||
|
</li>
|
|||
|
|
|||
|
<PaginationItem
|
|||
|
Disabled="_isLastIndex"
|
|||
|
OnClick="_=>NextPage()"
|
|||
|
Type="next"
|
|||
|
/>
|