From 59c66ffae806e26b9aeed8299450e871563c626a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E4=B8=AD=E5=A5=87?= Date: Thu, 22 May 2025 15:38:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E5=AF=86=E7=A0=81=E6=97=A0=E6=B3=95=E9=87=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/service/api/system/user.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/service/api/system/user.ts b/src/service/api/system/user.ts index ba9b942a..e7c03d86 100644 --- a/src/service/api/system/user.ts +++ b/src/service/api/system/user.ts @@ -80,6 +80,9 @@ export function fetchResetUserPassword(userId: CommonType.IdType, password: stri return request({ url: '/system/user/resetPwd', method: 'put', + headers: { + isEncrypt: true + }, data: { userId, password } }); }