From 7885aaed3bb44c9ace8753b8d4f03280e4554e13 Mon Sep 17 00:00:00 2001 From: JEECG <445654970@qq.com> Date: Thu, 24 Apr 2025 09:26:27 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90issues/8137=E3=80=91vxetable=E8=A1=A8?= =?UTF-8?q?=E6=A0=BC=E7=A6=81=E7=94=A8=E5=90=8E=E5=88=86=E9=A1=B5=E9=9A=90?= =?UTF-8?q?=E8=97=8F=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/jeecg/JVxeTable/src/hooks/usePagination.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jeecgboot-vue3/src/components/jeecg/JVxeTable/src/hooks/usePagination.ts b/jeecgboot-vue3/src/components/jeecg/JVxeTable/src/hooks/usePagination.ts index 5bd654615..2b22fde87 100644 --- a/jeecgboot-vue3/src/components/jeecg/JVxeTable/src/hooks/usePagination.ts +++ b/jeecgboot-vue3/src/components/jeecg/JVxeTable/src/hooks/usePagination.ts @@ -52,7 +52,9 @@ export function usePagination(props: JVxeTableProps, methods: JVxeTableMethods) [ h(Pagination, { ...bindProps.value, - disabled: props.disabled, + // update-begin--author:liaozhiyang---date:20250423---for:【issues/8137】vxetable表格禁用后分页隐藏了 + disabled: false, + // update-end--author:liaozhiyang---date:20250423---for:【issues/8137】vxetable表格禁用后分页隐藏了 onChange: handleChange, onShowSizeChange: handleShowSizeChange, }),