Pre Merge pull request !4 from small monkey/fix-user

This commit is contained in:
small monkey 2025-05-22 07:42:26 +00:00 committed by Gitee
commit 1b97f40295
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

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