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, }),