bug: 修复中奖积分不刷新的问题
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-07-17 22:34:18 +08:00
parent 7739a8d78f
commit 90d60a504b

View File

@@ -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();
};
</script>