feat(加载动画): 对非活动页的加载动画取消展示背景图

This commit is contained in:
hzj 2026-05-15 18:12:01 +08:00
parent 46ac054460
commit 104786abd5
4 changed files with 2 additions and 10 deletions

View File

@ -6,7 +6,7 @@
</div>
<!-- 主要内容 -->
<div class="active-game-shell scroll">
<div v-else class="active-game-shell scroll">
<div class="active-game-stage">
<!-- 头部背景图 -->
<VapBg

View File

@ -6,7 +6,7 @@
<LoadingContent>{{ t('loading') }}...</LoadingContent>
</div>
<div v-show="!isLoading" class="reward-content">
<div v-else class="reward-content">
<img
v-for="imageName in rewardImages"
:key="imageName"

View File

@ -3,10 +3,6 @@
<div class="fullPage">
<!-- 预加载状态 -->
<div v-if="isLoading" class="loading-container">
<!-- 页面背景 -->
<BackgroundLayer :backgroundImages="[imageUrl('bg')]" />
<!-- 加载动画 -->
<LoadingContent>{{ $t('loading') }}...</LoadingContent>
</div>

View File

@ -3,10 +3,6 @@
<div class="fullPage">
<!-- 预加载状态 -->
<div v-if="isLoading" class="loading-container">
<!-- 页面背景 -->
<BackgroundLayer :backgroundImages="[imageUrl('bg1New'), imageUrl('bg2'), imageUrl('bg3')]" />
<!-- 加载动画 -->
<LoadingContent>{{ $t('loading') }}...</LoadingContent>
</div>