Commit 41683b97 authored by Bill's avatar Bill

修改图片管理分页问题

parent 98ba6f58
......@@ -27,7 +27,7 @@ const ImagesManagement = () => {
useEffect(() => {
const params = {
current: 1,
pageSize: 1
pageSize: 10
}
getTableDataSource(actions, params, getData);
}, [])
......@@ -43,7 +43,7 @@ const ImagesManagement = () => {
const postData = {
name: title || '',
current: 1,
pageSize: 1,
pageSize: 10,
...params,
}
getTableDataSource(actions, postData, getData);
......
......@@ -139,7 +139,7 @@ const schema = {
},
'x-component-props': {
showQuickJumper: true,
pageSize: 1,
pageSize: 10,
size: 'small'
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment