修复游戏id字段错误的bug

This commit is contained in:
2023-10-18 21:53:35 +08:00
parent 0227f87216
commit 3f767134be

View File

@@ -4,7 +4,7 @@ import Taro from "@tarojs/taro";
export const app = {
API_URL: () => `${process.env.TARO_APP_API}`,
API_WS: () =>
`${process.env.TARO_APP_WS}?uid=${Taro.getStorageSync("uid")}&gema_id=${
`${process.env.TARO_APP_WS}?uid=${Taro.getStorageSync("uid")}&game_id=${
Taro.getStorageSync("gameItem").ID
}`,
};