From d843dc46bfd665fe6e1cc2f41ceab5c0f7291c6b Mon Sep 17 00:00:00 2001 From: bot_dev2 Date: Thu, 6 Aug 2026 16:01:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=3F=3F=20=E4=B8=8E=20||=20=E6=B7=B7?= =?UTF-8?q?=E7=94=A8=E5=8A=A0=E6=8B=AC=E5=8F=B7=EF=BC=88193d561=20?= =?UTF-8?q?=E5=90=8C=E6=AC=BE=E8=AF=AD=E6=B3=95=EF=BC=8CC2=20=E6=9E=84?= =?UTF-8?q?=E5=BB=BA=E4=BF=AE=E5=A4=8D=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../apps/web-antdv-next/src/views/iaop/admin/models.vue | 2 +- .../apps/web-antdv-next/src/views/iaop/studio/version.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/fba/fba-ui-src/apps/web-antdv-next/src/views/iaop/admin/models.vue b/deploy/fba/fba-ui-src/apps/web-antdv-next/src/views/iaop/admin/models.vue index 9514a00..a8599db 100644 --- a/deploy/fba/fba-ui-src/apps/web-antdv-next/src/views/iaop/admin/models.vue +++ b/deploy/fba/fba-ui-src/apps/web-antdv-next/src/views/iaop/admin/models.vue @@ -65,7 +65,7 @@ const gridOptions: VxeTableGridOptions = { query: async ({ page } = {}) => { // page 可能缺省(分页未就绪的首次查询),兜底返回全量 const cur = page?.currentPage ?? 1; - const size = page?.pageSize ?? models.value.length || 10; + const size = page?.pageSize ?? (models.value.length || 10); return { items: models.value.slice((cur - 1) * size, cur * size), total: models.value.length, diff --git a/deploy/fba/fba-ui-src/apps/web-antdv-next/src/views/iaop/studio/version.vue b/deploy/fba/fba-ui-src/apps/web-antdv-next/src/views/iaop/studio/version.vue index 27805af..efacba1 100644 --- a/deploy/fba/fba-ui-src/apps/web-antdv-next/src/views/iaop/studio/version.vue +++ b/deploy/fba/fba-ui-src/apps/web-antdv-next/src/views/iaop/studio/version.vue @@ -43,7 +43,7 @@ const gridOptions: VxeTableGridOptions = { query: async ({ page } = {}) => { // page 可能缺省(分页未就绪的首次查询),兜底返回全量 const cur = page?.currentPage ?? 1; - const size = page?.pageSize ?? rows.value.length || 10; + const size = page?.pageSize ?? (rows.value.length || 10); return { items: rows.value.slice((cur - 1) * size, cur * size), total: rows.value.length,