还原抽奖

This commit is contained in:
xiaoaojiao
2025-09-24 13:55:09 +08:00
parent 2ee6172498
commit 014196ffa0

View File

@@ -346,13 +346,13 @@ watch(() => mergeId, async (newVal) => {
}, { immediate: true })
globalToastEvent.on(ToastType.SHOW_LOTTERY, async () => {
await initUserGameInfos(false, false);
// await initUserGameInfos(false, false);
lotteryShow.value = true
})
// watch(() => lotteryShow.value, async (newVal) => {
// initUserGameInfos(true, true);
// }, { immediate: true })
watch(() => lotteryShow.value, async (newVal) => {
initUserGameInfos(true, true);
}, { immediate: true })
</script>