From 1cccfeff2287c2bb9beca9f2d4df4595773c7a14 Mon Sep 17 00:00:00 2001 From: zhengkunwang <31820853+zhengkunwang223@users.noreply.github.com> Date: Wed, 9 Aug 2023 18:00:13 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E6=94=B9=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E5=95=86=E5=BA=97=E7=9A=84=E5=88=86=E9=A1=B5=20(#1895)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/app-store/apps/index.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/app-store/apps/index.vue b/frontend/src/views/app-store/apps/index.vue index 07a92c9c7..f2617ae75 100644 --- a/frontend/src/views/app-store/apps/index.vue +++ b/frontend/src/views/app-store/apps/index.vue @@ -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'" /> @@ -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([]);