diff --git a/frontend/src/components/task-list/index.vue b/frontend/src/components/task-list/index.vue index ffcee47e4..e1c0ea482 100644 --- a/frontend/src/components/task-list/index.vue +++ b/frontend/src/components/task-list/index.vue @@ -68,7 +68,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'task-list-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('task-list-page-size')) || 10, + pageSize: Number(localStorage.getItem('task-list-page-size')) || 20, total: 0, small: true, }); diff --git a/frontend/src/views/ai/mcp/server/index.vue b/frontend/src/views/ai/mcp/server/index.vue index b6f4e37a5..623a8ab36 100644 --- a/frontend/src/views/ai/mcp/server/index.vue +++ b/frontend/src/views/ai/mcp/server/index.vue @@ -118,7 +118,7 @@ const items = ref([]); const paginationConfig = reactive({ cacheSizeKey: 'mcp-server-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('mcp-server-page-size')) || 10, + pageSize: Number(localStorage.getItem('mcp-server-page-size')) || 20, total: 0, }); const mobile = computed(() => { diff --git a/frontend/src/views/ai/model/index.vue b/frontend/src/views/ai/model/index.vue index 82e693196..b568d2f38 100644 --- a/frontend/src/views/ai/model/index.vue +++ b/frontend/src/views/ai/model/index.vue @@ -225,7 +225,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'model-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('page-size')) || 10, + pageSize: Number(localStorage.getItem('page-size')) || 20, total: 0, }); const searchName = ref(); diff --git a/frontend/src/views/container/compose/index.vue b/frontend/src/views/container/compose/index.vue index 7e2ee9cfa..93b7aaf61 100644 --- a/frontend/src/views/container/compose/index.vue +++ b/frontend/src/views/container/compose/index.vue @@ -119,7 +119,7 @@ const loading = ref(false); const paginationConfig = reactive({ cacheSizeKey: 'container-compose-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('container-compose-page-size')) || 10, + pageSize: Number(localStorage.getItem('container-compose-page-size')) || 20, total: 0, }); const searchName = ref(); diff --git a/frontend/src/views/container/container/index.vue b/frontend/src/views/container/container/index.vue index 1aaf5c1df..9a4ba233a 100644 --- a/frontend/src/views/container/container/index.vue +++ b/frontend/src/views/container/container/index.vue @@ -391,7 +391,7 @@ const selects = ref([]); const paginationConfig = reactive({ cacheSizeKey: 'container-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('container-page-size')) || 10, + pageSize: Number(localStorage.getItem('container-page-size')) || 20, total: 0, state: 'all', orderBy: 'createdAt', diff --git a/frontend/src/views/container/image/index.vue b/frontend/src/views/container/image/index.vue index dfcdcb286..f948fb6a0 100644 --- a/frontend/src/views/container/image/index.vue +++ b/frontend/src/views/container/image/index.vue @@ -145,7 +145,7 @@ const repos = ref(); const paginationConfig = reactive({ cacheSizeKey: 'container-image-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('container-image-page-size')) || 10, + pageSize: Number(localStorage.getItem('container-image-page-size')) || 20, total: 0, name: '', orderBy: 'createdAt', diff --git a/frontend/src/views/container/network/index.vue b/frontend/src/views/container/network/index.vue index b9a59cbc8..c03fb7aa3 100644 --- a/frontend/src/views/container/network/index.vue +++ b/frontend/src/views/container/network/index.vue @@ -113,7 +113,7 @@ const selects = ref([]); const paginationConfig = reactive({ cacheSizeKey: 'container-network-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('container-network-page-size')) || 10, + pageSize: Number(localStorage.getItem('container-network-page-size')) || 20, total: 0, }); const searchName = ref(); diff --git a/frontend/src/views/container/repo/index.vue b/frontend/src/views/container/repo/index.vue index 865f593b4..fe0588f79 100644 --- a/frontend/src/views/container/repo/index.vue +++ b/frontend/src/views/container/repo/index.vue @@ -73,7 +73,7 @@ const selects = ref([]); const paginationConfig = reactive({ cacheSizeKey: 'image-repo-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('image-repo-page-size')) || 10, + pageSize: Number(localStorage.getItem('image-repo-page-size')) || 20, total: 0, }); const searchName = ref(); diff --git a/frontend/src/views/container/template/index.vue b/frontend/src/views/container/template/index.vue index e4362f38b..64ee3dedc 100644 --- a/frontend/src/views/container/template/index.vue +++ b/frontend/src/views/container/template/index.vue @@ -78,7 +78,7 @@ const selects = ref([]); const paginationConfig = reactive({ cacheSizeKey: 'compose-template-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('compose-template-page-size')) || 10, + pageSize: Number(localStorage.getItem('compose-template-page-size')) || 20, total: 0, }); const searchName = ref(); diff --git a/frontend/src/views/container/volume/index.vue b/frontend/src/views/container/volume/index.vue index 0b99175f5..a0a3a7093 100644 --- a/frontend/src/views/container/volume/index.vue +++ b/frontend/src/views/container/volume/index.vue @@ -152,7 +152,7 @@ const selects = ref([]); const paginationConfig = reactive({ cacheSizeKey: 'container-volume-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('container-volume-page-size')) || 10, + pageSize: Number(localStorage.getItem('container-volume-page-size')) || 20, total: 0, }); const searchName = ref(); diff --git a/frontend/src/views/cronjob/cronjob/index.vue b/frontend/src/views/cronjob/cronjob/index.vue index e93b5e314..22af84ae5 100644 --- a/frontend/src/views/cronjob/cronjob/index.vue +++ b/frontend/src/views/cronjob/cronjob/index.vue @@ -260,7 +260,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'cronjob-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('cronjob-page-size')) || 10, + pageSize: Number(localStorage.getItem('cronjob-page-size')) || 20, total: 0, orderBy: 'createdAt', order: 'null', diff --git a/frontend/src/views/cronjob/library/index.vue b/frontend/src/views/cronjob/library/index.vue index a3dac062f..16a283cda 100644 --- a/frontend/src/views/cronjob/library/index.vue +++ b/frontend/src/views/cronjob/library/index.vue @@ -134,7 +134,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'script-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('script-page-size')) || 10, + pageSize: Number(localStorage.getItem('script-page-size')) || 20, total: 0, }); const searchInfo = ref(''); diff --git a/frontend/src/views/database/mysql/index.vue b/frontend/src/views/database/mysql/index.vue index 245fdc4c7..ddce9c919 100644 --- a/frontend/src/views/database/mysql/index.vue +++ b/frontend/src/views/database/mysql/index.vue @@ -322,7 +322,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'mysql-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('mysql-page-size')) || 10, + pageSize: Number(localStorage.getItem('mysql-page-size')) || 20, total: 0, orderBy: 'createdAt', order: 'null', diff --git a/frontend/src/views/database/mysql/remote/index.vue b/frontend/src/views/database/mysql/remote/index.vue index 7f3f74c79..0b5651eef 100644 --- a/frontend/src/views/database/mysql/remote/index.vue +++ b/frontend/src/views/database/mysql/remote/index.vue @@ -93,7 +93,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'mysql-remote-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('mysql-remote-page-size')) || 10, + pageSize: Number(localStorage.getItem('mysql-remote-page-size')) || 20, total: 0, orderBy: 'createdAt', order: 'null', diff --git a/frontend/src/views/database/postgresql/index.vue b/frontend/src/views/database/postgresql/index.vue index 3902367c6..b9ba704fb 100644 --- a/frontend/src/views/database/postgresql/index.vue +++ b/frontend/src/views/database/postgresql/index.vue @@ -289,7 +289,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'postgresql-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('postgresql-page-size')) || 10, + pageSize: Number(localStorage.getItem('postgresql-page-size')) || 20, total: 0, orderBy: 'createdAt', order: 'null', diff --git a/frontend/src/views/database/postgresql/remote/index.vue b/frontend/src/views/database/postgresql/remote/index.vue index 38ed4c19b..d05d60869 100644 --- a/frontend/src/views/database/postgresql/remote/index.vue +++ b/frontend/src/views/database/postgresql/remote/index.vue @@ -93,7 +93,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'postgresql-remote-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('postgresql-remote-page-size')) || 10, + pageSize: Number(localStorage.getItem('postgresql-remote-page-size')) || 20, total: 0, orderBy: 'createdAt', order: 'null', diff --git a/frontend/src/views/database/redis/remote/index.vue b/frontend/src/views/database/redis/remote/index.vue index 2a88378a1..063b97569 100644 --- a/frontend/src/views/database/redis/remote/index.vue +++ b/frontend/src/views/database/redis/remote/index.vue @@ -92,7 +92,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'redis-remote-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('redis-remote-page-size')) || 10, + pageSize: Number(localStorage.getItem('redis-remote-page-size')) || 20, total: 0, orderBy: 'createdAt', order: 'null', diff --git a/frontend/src/views/database/redis/setting/persistence/index.vue b/frontend/src/views/database/redis/setting/persistence/index.vue index 87a454ca2..3d7382cc8 100644 --- a/frontend/src/views/database/redis/setting/persistence/index.vue +++ b/frontend/src/views/database/redis/setting/persistence/index.vue @@ -171,7 +171,7 @@ const confirmDialogRef = ref(); const paginationConfig = reactive({ cacheSizeKey: 'redis-backup-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('redis-backup-page-size')) || 10, + pageSize: Number(localStorage.getItem('redis-backup-page-size')) || 20, total: 0, }); diff --git a/frontend/src/views/host/firewall/forward/index.vue b/frontend/src/views/host/firewall/forward/index.vue index 00b0c3b9b..e0e54b6ff 100644 --- a/frontend/src/views/host/firewall/forward/index.vue +++ b/frontend/src/views/host/firewall/forward/index.vue @@ -102,7 +102,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'firewall-forward-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('firewall-forward-page-size')) || 10, + pageSize: Number(localStorage.getItem('firewall-forward-page-size')) || 20, total: 0, }); diff --git a/frontend/src/views/host/firewall/ip/index.vue b/frontend/src/views/host/firewall/ip/index.vue index 75265c4c2..ec62e8019 100644 --- a/frontend/src/views/host/firewall/ip/index.vue +++ b/frontend/src/views/host/firewall/ip/index.vue @@ -123,7 +123,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'firewall-ip-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('firewall-ip-page-size')) || 10, + pageSize: Number(localStorage.getItem('firewall-ip-page-size')) || 20, total: 0, }); diff --git a/frontend/src/views/host/firewall/port/index.vue b/frontend/src/views/host/firewall/port/index.vue index 7081c32f4..2e57261ac 100644 --- a/frontend/src/views/host/firewall/port/index.vue +++ b/frontend/src/views/host/firewall/port/index.vue @@ -175,7 +175,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'firewall-port-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('firewall-port-page-size')) || 10, + pageSize: Number(localStorage.getItem('firewall-port-page-size')) || 20, total: 0, }); diff --git a/frontend/src/views/host/ssh/log/log.vue b/frontend/src/views/host/ssh/log/log.vue index ad7e467bd..e089a85ec 100644 --- a/frontend/src/views/host/ssh/log/log.vue +++ b/frontend/src/views/host/ssh/log/log.vue @@ -100,7 +100,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'ssh-log-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('ssh-log-page-size')) || 10, + pageSize: Number(localStorage.getItem('ssh-log-page-size')) || 20, total: 0, }); diff --git a/frontend/src/views/host/ssh/ssh/certification/index.vue b/frontend/src/views/host/ssh/ssh/certification/index.vue index 199893cf0..cf8e99df1 100644 --- a/frontend/src/views/host/ssh/ssh/certification/index.vue +++ b/frontend/src/views/host/ssh/ssh/certification/index.vue @@ -218,7 +218,7 @@ const selects = ref([]); const paginationConfig = reactive({ cacheSizeKey: 'login-log-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('login-log-page-size')) || 10, + pageSize: Number(localStorage.getItem('login-log-page-size')) || 20, total: 0, small: true, }); diff --git a/frontend/src/views/log/login/index.vue b/frontend/src/views/log/login/index.vue index 465e080cd..77e8ea1ff 100644 --- a/frontend/src/views/log/login/index.vue +++ b/frontend/src/views/log/login/index.vue @@ -61,7 +61,7 @@ const confirmDialogRef = ref(); const paginationConfig = reactive({ cacheSizeKey: 'login-log-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('login-log-page-size')) || 10, + pageSize: Number(localStorage.getItem('login-log-page-size')) || 20, total: 0, }); const searchIP = ref(''); diff --git a/frontend/src/views/log/operation/index.vue b/frontend/src/views/log/operation/index.vue index 84c40d4f4..f73f15e94 100644 --- a/frontend/src/views/log/operation/index.vue +++ b/frontend/src/views/log/operation/index.vue @@ -109,7 +109,7 @@ const confirmDialogRef = ref(); const paginationConfig = reactive({ cacheSizeKey: 'operation-log-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('operation-log-page-size')) || 10, + pageSize: Number(localStorage.getItem('operation-log-page-size')) || 20, total: 0, }); const searchName = ref(''); diff --git a/frontend/src/views/log/task/index.vue b/frontend/src/views/log/task/index.vue index 5aa3c04af..ad8822cb7 100644 --- a/frontend/src/views/log/task/index.vue +++ b/frontend/src/views/log/task/index.vue @@ -58,7 +58,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'task-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('task-page-size')) || 10, + pageSize: Number(localStorage.getItem('task-page-size')) || 20, total: 0, }); const taskLogRef = ref(); diff --git a/frontend/src/views/setting/alert/dash/index.vue b/frontend/src/views/setting/alert/dash/index.vue index 37d96d71a..5997b1f5e 100644 --- a/frontend/src/views/setting/alert/dash/index.vue +++ b/frontend/src/views/setting/alert/dash/index.vue @@ -168,7 +168,7 @@ const req = reactive({ const paginationConfig = reactive({ cacheSizeKey: 'alert-list-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('alert-list-page-size')) || 10, + pageSize: Number(localStorage.getItem('alert-list-page-size')) || 20, total: 0, orderBy: 'created_at', order: 'null', diff --git a/frontend/src/views/setting/alert/log/index.vue b/frontend/src/views/setting/alert/log/index.vue index 5d7b9dc8b..66d06b62c 100644 --- a/frontend/src/views/setting/alert/log/index.vue +++ b/frontend/src/views/setting/alert/log/index.vue @@ -113,7 +113,7 @@ const resourceTypes = [ const paginationConfig = reactive({ cacheSizeKey: 'alert-log-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('alert-log-page-size')) || 10, + pageSize: Number(localStorage.getItem('alert-log-page-size')) || 20, total: 0, }); const req = reactive({ diff --git a/frontend/src/views/setting/backup-account/index.vue b/frontend/src/views/setting/backup-account/index.vue index 11a0abb51..f18561ea8 100644 --- a/frontend/src/views/setting/backup-account/index.vue +++ b/frontend/src/views/setting/backup-account/index.vue @@ -135,7 +135,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'backup-account-size', currentPage: 1, - pageSize: Number(localStorage.getItem('backup-account-size')) || 10, + pageSize: Number(localStorage.getItem('backup-account-size')) || 20, total: 0, type: '', name: '', diff --git a/frontend/src/views/setting/license/index.vue b/frontend/src/views/setting/license/index.vue index 5806d237c..3163bcf69 100644 --- a/frontend/src/views/setting/license/index.vue +++ b/frontend/src/views/setting/license/index.vue @@ -124,7 +124,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'license-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('license-page-size')) || 10, + pageSize: Number(localStorage.getItem('license-page-size')) || 20, total: 0, type: '', name: '', diff --git a/frontend/src/views/setting/snapshot/index.vue b/frontend/src/views/setting/snapshot/index.vue index d72d65392..d90be3cda 100644 --- a/frontend/src/views/setting/snapshot/index.vue +++ b/frontend/src/views/setting/snapshot/index.vue @@ -246,7 +246,7 @@ const selects = ref([]); const paginationConfig = reactive({ cacheSizeKey: 'snapshot-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('snapshot-page-size')) || 10, + pageSize: Number(localStorage.getItem('snapshot-page-size')) || 20, total: 0, orderBy: 'createdAt', order: 'null', diff --git a/frontend/src/views/terminal/command/index.vue b/frontend/src/views/terminal/command/index.vue index 94a41c426..3b9cf43f8 100644 --- a/frontend/src/views/terminal/command/index.vue +++ b/frontend/src/views/terminal/command/index.vue @@ -106,7 +106,7 @@ const groupList = ref(); const paginationConfig = reactive({ cacheSizeKey: 'terminal-command-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('terminal-command-page-size')) || 10, + pageSize: Number(localStorage.getItem('terminal-command-page-size')) || 20, total: 0, orderBy: 'name', order: 'ascending', diff --git a/frontend/src/views/terminal/host/index.vue b/frontend/src/views/terminal/host/index.vue index 5ce23ad82..08aad1e7f 100644 --- a/frontend/src/views/terminal/host/index.vue +++ b/frontend/src/views/terminal/host/index.vue @@ -94,7 +94,7 @@ const selects = ref([]); const paginationConfig = reactive({ cacheSizeKey: 'terminal-host-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('terminal-host-page-size')) || 10, + pageSize: Number(localStorage.getItem('terminal-host-page-size')) || 20, total: 0, }); const info = ref(); diff --git a/frontend/src/views/toolbox/clam/index.vue b/frontend/src/views/toolbox/clam/index.vue index f2448884a..7f2061133 100644 --- a/frontend/src/views/toolbox/clam/index.vue +++ b/frontend/src/views/toolbox/clam/index.vue @@ -191,7 +191,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'clam-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('clam-page-size')) || 10, + pageSize: Number(localStorage.getItem('clam-page-size')) || 20, total: 0, orderBy: 'createdAt', order: 'null', diff --git a/frontend/src/views/toolbox/ftp/index.vue b/frontend/src/views/toolbox/ftp/index.vue index ff10299d9..0c52c134e 100644 --- a/frontend/src/views/toolbox/ftp/index.vue +++ b/frontend/src/views/toolbox/ftp/index.vue @@ -169,7 +169,7 @@ const data = ref(); const paginationConfig = reactive({ cacheSizeKey: 'ftp-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('ftp-page-size')) || 10, + pageSize: Number(localStorage.getItem('ftp-page-size')) || 20, total: 0, orderBy: 'createdAt', order: 'null', diff --git a/frontend/src/views/toolbox/ftp/log/index.vue b/frontend/src/views/toolbox/ftp/log/index.vue index 438c1e4fa..755cdf753 100644 --- a/frontend/src/views/toolbox/ftp/log/index.vue +++ b/frontend/src/views/toolbox/ftp/log/index.vue @@ -46,7 +46,7 @@ import i18n from '@/lang'; const paginationConfig = reactive({ cacheSizeKey: 'ftp-log-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('ftp-log-page-size')) || 10, + pageSize: Number(localStorage.getItem('ftp-log-page-size')) || 20, total: 0, user: '', operation: '', diff --git a/frontend/src/views/website/runtime/dotnet/index.vue b/frontend/src/views/website/runtime/dotnet/index.vue index 3958c24ab..a08d00f35 100644 --- a/frontend/src/views/website/runtime/dotnet/index.vue +++ b/frontend/src/views/website/runtime/dotnet/index.vue @@ -135,7 +135,7 @@ const mobile = computed(() => { const paginationConfig = reactive({ cacheSizeKey: 'runtime-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('runtime-page-size')) || 10, + pageSize: Number(localStorage.getItem('runtime-page-size')) || 20, total: 0, }); const req = reactive({ diff --git a/frontend/src/views/website/runtime/go/index.vue b/frontend/src/views/website/runtime/go/index.vue index 6380ca62e..58000328a 100644 --- a/frontend/src/views/website/runtime/go/index.vue +++ b/frontend/src/views/website/runtime/go/index.vue @@ -134,7 +134,7 @@ const isExist = ref(false); const paginationConfig = reactive({ cacheSizeKey: 'runtime-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('runtime-page-size')) || 10, + pageSize: Number(localStorage.getItem('runtime-page-size')) || 20, total: 0, }); const req = reactive({ diff --git a/frontend/src/views/website/runtime/java/index.vue b/frontend/src/views/website/runtime/java/index.vue index 9a4989f9a..bc7fe27f9 100644 --- a/frontend/src/views/website/runtime/java/index.vue +++ b/frontend/src/views/website/runtime/java/index.vue @@ -134,7 +134,7 @@ const isExist = ref(false); const paginationConfig = reactive({ cacheSizeKey: 'runtime-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('runtime-page-size')) || 10, + pageSize: Number(localStorage.getItem('runtime-page-size')) || 20, total: 0, }); const req = reactive({ diff --git a/frontend/src/views/website/runtime/node/index.vue b/frontend/src/views/website/runtime/node/index.vue index 49edc4d07..4ecc22ba9 100644 --- a/frontend/src/views/website/runtime/node/index.vue +++ b/frontend/src/views/website/runtime/node/index.vue @@ -137,7 +137,7 @@ const isExist = ref(false); const paginationConfig = reactive({ cacheSizeKey: 'runtime-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('runtime-page-size')) || 10, + pageSize: Number(localStorage.getItem('runtime-page-size')) || 20, total: 0, }); const req = reactive({ diff --git a/frontend/src/views/website/runtime/php/extension-template/index.vue b/frontend/src/views/website/runtime/php/extension-template/index.vue index c8da3d3b0..841e45b97 100644 --- a/frontend/src/views/website/runtime/php/extension-template/index.vue +++ b/frontend/src/views/website/runtime/php/extension-template/index.vue @@ -36,7 +36,7 @@ const opRef = ref(); const paginationConfig = reactive({ cacheSizeKey: 'website-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('website-page-size')) || 10, + pageSize: Number(localStorage.getItem('website-page-size')) || 20, total: 0, }); diff --git a/frontend/src/views/website/runtime/php/index.vue b/frontend/src/views/website/runtime/php/index.vue index cd540553a..f592a4278 100644 --- a/frontend/src/views/website/runtime/php/index.vue +++ b/frontend/src/views/website/runtime/php/index.vue @@ -163,7 +163,7 @@ const taskLogRef = ref(); const paginationConfig = reactive({ cacheSizeKey: 'runtime-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('runtime-page-size')) || 10, + pageSize: Number(localStorage.getItem('runtime-page-size')) || 20, total: 0, }); let req = reactive({ diff --git a/frontend/src/views/website/runtime/python/index.vue b/frontend/src/views/website/runtime/python/index.vue index a9c638fce..f5c2883f1 100644 --- a/frontend/src/views/website/runtime/python/index.vue +++ b/frontend/src/views/website/runtime/python/index.vue @@ -134,7 +134,7 @@ const isExist = ref(false); const paginationConfig = reactive({ cacheSizeKey: 'runtime-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('runtime-page-size')) || 10, + pageSize: Number(localStorage.getItem('runtime-page-size')) || 20, total: 0, }); const req = reactive({ diff --git a/frontend/src/views/website/ssl/index.vue b/frontend/src/views/website/ssl/index.vue index 4cdcaf9b9..a1a698bfb 100644 --- a/frontend/src/views/website/ssl/index.vue +++ b/frontend/src/views/website/ssl/index.vue @@ -192,7 +192,7 @@ const globalStore = GlobalStore(); const paginationConfig = reactive({ cacheSizeKey: 'ssl-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('ssl-page-size')) || 10, + pageSize: Number(localStorage.getItem('ssl-page-size')) || 20, total: 0, }); const acmeAccountRef = ref(); diff --git a/frontend/src/views/website/website/index.vue b/frontend/src/views/website/website/index.vue index ed0d048f0..87a00c516 100644 --- a/frontend/src/views/website/website/index.vue +++ b/frontend/src/views/website/website/index.vue @@ -360,7 +360,7 @@ const websiteDir = ref(); const paginationConfig = reactive({ cacheSizeKey: 'website-page-size', currentPage: 1, - pageSize: Number(localStorage.getItem('website-page-size')) || 10, + pageSize: Number(localStorage.getItem('website-page-size')) || 20, total: 0, }); let req = reactive({