diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue index 6e8d261..6aa095d 100644 --- a/src/pages/index/index.vue +++ b/src/pages/index/index.vue @@ -855,7 +855,7 @@ const getBetJl = async () => { } }; -const lottieFn = (type, num = 0) => { +const lottieFn = async (type, num = 0) => { isLottie.value = true; const lottieEle = document.getElementById("lottie"); @@ -886,6 +886,8 @@ const lottieFn = (type, num = 0) => { isLottie.value = false; ctx.destroy(); }); + + await getUserInfo(); };