From 3b5d3668630bdf06eb774f30d97af35ef923a2e7 Mon Sep 17 00:00:00 2001 From: HUANGBANGLIN Date: Fri, 7 Nov 2025 10:26:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9URL=E9=8C=AF=E8=AA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/admin/guadan/create.aspx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/admin/guadan/create.aspx b/web/admin/guadan/create.aspx index e0b8a1b..b74fff9 100644 --- a/web/admin/guadan/create.aspx +++ b/web/admin/guadan/create.aspx @@ -1393,7 +1393,7 @@ message: `確定要將 ${guest.follower.u_name || ''} 退房嗎?`, onConfirm: async () => { try { - const response = await axios.post(`/api/guadanorderguest/checkout`, null, { + const response = await axios.post(HTTP_HOST + `api/guadanorderguest/checkout`, null, { params: { uuid: guest.uuid } }); @@ -1594,7 +1594,7 @@ onConfirm: async () => { try { // 發送請求到後端 API - const response = await axios.post(`/api/guadanorderguest/checkin`, null, { + const response = await axios.post(HTTP_HOST + `api/guadanorderguest/checkin`, null, { params: { uuid: guest.uuid } });