diff --git a/src/components/lottery/LotteryGame.vue b/src/components/lottery/LotteryGame.vue index dd17b8e..6e231fb 100644 --- a/src/components/lottery/LotteryGame.vue +++ b/src/components/lottery/LotteryGame.vue @@ -78,7 +78,8 @@ io.emit("join", id, (data) => { }); io.on("game-info", (data) => { - const { name, session, end } = data; + const { name, session, countdown } = data; + const end = Date.now() + countdown * 1000 Object.assign(gameInfo, { session, end }); countDownTime.restart(end); getGameHistory(); @@ -246,12 +247,11 @@ GameInfo(); >