调整 用户

This commit is contained in:
2026-09-18 18:25:52 +08:00
parent 84d9e098ba
commit bcbc45bb03
6 changed files with 286 additions and 85 deletions
+7 -1
View File
@@ -31,10 +31,16 @@ export const add = row => {
});
};
export const syncIamAccounts = () => {
export const syncIamAccounts = (current = 1, size = 50, signal) => {
return request({
url: '/blade-system/user/sync-iam-accounts',
method: 'post',
params: {
current,
size,
},
timeout: 60000,
signal,
});
};