chore(邀请新用户页面): 调整v-if为v-show,以适配当前的图片加载功能

This commit is contained in:
hzj 2025-12-26 19:20:59 +08:00
parent bfdd4cdcf0
commit 8a5f158724

View File

@ -125,7 +125,7 @@
</div>
<!-- 邀请列表模块 -->
<div v-if="showModule == 'list'" style="display: flex; flex-direction: column; gap: 2vw">
<div v-show="showModule == 'list'" style="display: flex; flex-direction: column; gap: 2vw">
<!-- 收入展示 -->
<itemCenter
style=""
@ -367,7 +367,7 @@
</div>
<!-- 流程说明模块 -->
<div v-if="showModule == 'process'" style="position: relative">
<div v-show="showModule == 'process'" style="position: relative">
<img
v-smart-img
:src="imageUrl(getImgName('example'))"
@ -381,7 +381,7 @@
<!-- 弹窗遮罩层 -->
<maskLayer :maskLayerShow="maskLayerShow" @click="closedPopup">
<!-- 帮助模块 -->
<div v-if="helpInfoShow" style="margin: 20% 0; position: relative" @click.stop>
<div v-show="helpInfoShow" style="margin: 20% 0; position: relative" @click.stop>
<img
v-smart-img
:src="imageUrl(getImgName('helpInfo'))"
@ -393,7 +393,7 @@
<!-- 输入邀请码模块 -->
<div
v-if="enterCodeShow"
v-show="enterCodeShow"
style="
width: 100vw;
height: 100vh;