From 5ba0155b0b67073ef3604349f5a280565361d651 Mon Sep 17 00:00:00 2001 From: anonymous Date: Thu, 9 Jan 2025 16:06:52 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E4=BF=AE=E6=94=B9=E9=AA=8C?= =?UTF-8?q?=E8=AF=81=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/hooks/useCaptcha.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useCaptcha.ts b/src/hooks/useCaptcha.ts index 1a60e2d..12b8375 100644 --- a/src/hooks/useCaptcha.ts +++ b/src/hooks/useCaptcha.ts @@ -3,7 +3,7 @@ export const useCaptcha = () => { const t = ref(Date.now()) const codeUrl = computed(() => { - return baseUrl + '/captcha.html?t=' + t.value + return baseUrl + '/api/index/captcha?t=' + t.value }) const refreshCode = () => { t.value = Date.now()