From 90d60a504bc8c0dcd59f369d24259c823b49a254 Mon Sep 17 00:00:00 2001 From: Huakk <1751826683@qq.com> Date: Wed, 17 Jul 2024 22:34:18 +0800 Subject: [PATCH] =?UTF-8?q?bug:=20=E4=BF=AE=E5=A4=8D=E4=B8=AD=E5=A5=96?= =?UTF-8?q?=E7=A7=AF=E5=88=86=E4=B8=8D=E5=88=B7=E6=96=B0=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/index/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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(); };