mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-28 05:15:04 +08:00
feat: 修改应用商店的分页 (#1895)
This commit is contained in:
parent
6c3a5b0ec7
commit
1cccfeff22
@ -119,6 +119,7 @@
|
||||
v-model:page-size="paginationConfig.pageSize"
|
||||
v-bind="paginationConfig"
|
||||
@change="search(req)"
|
||||
:page-sizes="[30, 60, 90]"
|
||||
:layout="mobile ? 'total, prev, pager, next' : 'total, sizes, prev, pager, next, jumper'"
|
||||
/>
|
||||
</div>
|
||||
@ -148,7 +149,7 @@ const language = useI18n().locale.value;
|
||||
|
||||
const paginationConfig = reactive({
|
||||
currentPage: 1,
|
||||
pageSize: 50,
|
||||
pageSize: 60,
|
||||
total: 0,
|
||||
});
|
||||
|
||||
@ -156,7 +157,7 @@ const req = reactive({
|
||||
name: '',
|
||||
tags: [],
|
||||
page: 1,
|
||||
pageSize: 50,
|
||||
pageSize: 60,
|
||||
});
|
||||
|
||||
const apps = ref<App.AppDTO[]>([]);
|
||||
|
Loading…
Reference in New Issue
Block a user