【issues/8137】vxetable表格禁用后分页隐藏了

pull/8191/head
JEECG 2025-04-24 09:26:27 +08:00
parent 6f4c2eb77c
commit 7885aaed3b
1 changed files with 3 additions and 1 deletions

View File

@ -52,7 +52,9 @@ export function usePagination(props: JVxeTableProps, methods: JVxeTableMethods)
[ [
h(Pagination, { h(Pagination, {
...bindProps.value, ...bindProps.value,
disabled: props.disabled, // update-begin--author:liaozhiyang---date:20250423---forissues/8137vxetable
disabled: false,
// update-end--author:liaozhiyang---date:20250423---forissues/8137vxetable
onChange: handleChange, onChange: handleChange,
onShowSizeChange: handleShowSizeChange, onShowSizeChange: handleShowSizeChange,
}), }),