mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 13:08:23 +08:00
19 lines
460 B
C#
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"
|
|
/> |