From b091301ab19fd2fb7a114eb7118234c4dda2b455 Mon Sep 17 00:00:00 2001 From: lion <120344285@qq.com> Date: Wed, 29 Jul 2026 17:55:11 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=84=E5=AE=A1=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/reviewer/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/reviewer/auth.ts b/src/api/reviewer/auth.ts index 44a09fc..a084131 100644 --- a/src/api/reviewer/auth.ts +++ b/src/api/reviewer/auth.ts @@ -10,7 +10,7 @@ export async function changeReviewerPassword(body: ReviewerChangePasswordBody): const { token } = readReviewerSession() if (!token) throw new Error('未登录') const r = await fetch(`${getApiBase()}/api/v1/review/auth/password`, { - method: 'PUT', + method: 'POST', headers: { Authorization: `Bearer ${token}`, Accept: 'application/json',