fix: set page to -1 for all data

This commit is contained in:
jialin
2025-11-07 16:54:33 +08:00
parent 64e2cfa35a
commit fdb6ac7575
13 changed files with 19 additions and 31 deletions
@@ -33,8 +33,7 @@ const AccessControlForm = forwardRef((props: AccessControlFormProps, ref) => {
[]
);
const [queryParams, setQueryParams] = useState<Global.SearchParams>({
page: 1,
perPage: 100
page: -1
});
const getUserList = async (query: Global.SearchParams) => {