From 9b53c536c72b2e1395bf70139f60199e60856ef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=9D=B0?= Date: Mon, 8 Sep 2025 16:52:49 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=AF=A6=E6=83=85=E9=A1=B5id=E4=BB=8E?= =?UTF-8?q?=E9=93=BE=E6=8E=A5=E4=B8=8A=E8=8E=B7=E5=8F=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/detail/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/detail/index.tsx b/src/pages/detail/index.tsx index b242ad1..efa46c7 100644 --- a/src/pages/detail/index.tsx +++ b/src/pages/detail/index.tsx @@ -549,7 +549,7 @@ function Index() { } const fetchDetail = async () => { - const res = await DetailService.getDetail(3387/* Number(id) */) + const res = await DetailService.getDetail(Number(id)) if (res.code === 0) { setDetail(res.data) } @@ -561,7 +561,7 @@ function Index() { const handleJoinGame = () => { Taro.navigateTo({ - url: `/pages/orderCheck/index?gameId=${3387/* id */}`, + url: `/pages/orderCheck/index?gameId=${id}`, }) }