Merge branch 'feat/liujie'

This commit is contained in:
2025-09-08 16:54:18 +08:00

View File

@@ -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}`,
})
}