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

This commit is contained in:
王中奇 2025-05-22 15:38:12 +08:00
parent 8c2a0b5886
commit 59c66ffae8

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 }
});
}