由于hooks更改 useTable((param) => 改成useTable({}, (param) =>

This commit is contained in:
1025859868@qq.com
2024-06-05 16:29:36 +08:00
parent 5637a34169
commit 2e6312e84f
7 changed files with 8 additions and 8 deletions

View File

@@ -37,7 +37,7 @@ export default function MoveModal({ data, open, setOpen, reload }) {
}))
}
const { page, pageSize, data: datalist, total, loading, setPage, search} = useTable((param) =>
const { page, pageSize, data: datalist, total, loading, setPage, search} = useTable({},(param) =>
readFileLibDatabase(param.page, 10000, param.keyword, '', '1')
)