From 300cd863d75ff27b777741609656c7a6046bf01c Mon Sep 17 00:00:00 2001 From: zhengshunjin <2667579369@qq.com> Date: Fri, 1 May 2026 15:55:58 +0800 Subject: [PATCH] =?UTF-8?q?fix(home):=20=E6=9B=B4=E6=96=B0=E5=B0=8F?= =?UTF-8?q?=E8=AF=B4=E4=B8=8B=E8=BD=BD=E6=8E=A5=E5=8F=A3=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将小说下载接口从 localhost 修改为 192.168.1.32 - 确保接口调用能够正确连接到目标服务器 --- flask-ui/src/views/HomeView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask-ui/src/views/HomeView.vue b/flask-ui/src/views/HomeView.vue index 3b40399..971bdb3 100644 --- a/flask-ui/src/views/HomeView.vue +++ b/flask-ui/src/views/HomeView.vue @@ -49,7 +49,7 @@ function closeAlert(id: number) { const handleClick = async (btnObj: BtnItem) => { if (btnObj.title === "断开") return if (btnObj.title === "小说下载") { - connect("http://localhost:5000/api/book/download") + connect("http://192.168.1.32:5000/api/book/download") return } loading.value = true