ant-design-blazor/components/pagination/PaginationSimple.razor
2020-05-29 00:33:49 +08:00

19 lines
460 B
C#

@namespace AntDesign
<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"
/>