Merge branch 'dev' into flow

This commit is contained in:
xlsea
2025-05-22 19:14:20 +08:00
7 changed files with 26 additions and 27 deletions

View File

@ -80,6 +80,9 @@ export function fetchResetUserPassword(userId: CommonType.IdType, password: stri
return request<boolean>({
url: '/system/user/resetPwd',
method: 'put',
headers: {
isEncrypt: true
},
data: { userId, password }
});
}