From 13d5ca8d11d84458072e19d5dd667ecd0bc5deef Mon Sep 17 00:00:00 2001 From: zsqtony <450952271@qq.com> Date: Fri, 27 Jun 2025 17:16:40 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/components/layout/ChangePassword.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/components/layout/ChangePassword.tsx b/src/common/components/layout/ChangePassword.tsx index f2ba7dc..953c8d5 100644 --- a/src/common/components/layout/ChangePassword.tsx +++ b/src/common/components/layout/ChangePassword.tsx @@ -10,13 +10,13 @@ export default function ChangePassword({ setOpen: (open: boolean) => void; }) { return ( - + open={open} wrapperCol={{ span: 24 }} width="500px" title="修改密码" onFinish={async (values) => { - return Apis.Auth.ChangePassword(values) + return Apis.Common.Auth.ChangePassword(values) .then(() => { message.success('修改密码成功'); setOpen(false);