!4 fix: 调整用户密码无法重置

Merge pull request !4 from small monkey/fix-user
This commit is contained in:
马铃薯头 2025-05-22 07:47:45 +00:00 committed by Gitee
commit 6f344c99b9
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>({
url: '/system/user/resetPwd',
method: 'put',
headers: {
isEncrypt: true
},
data: { userId, password }
});
}