chore(邀请新用户页面): 调整v-if为v-show,以适配当前的图片加载功能
This commit is contained in:
parent
bfdd4cdcf0
commit
8a5f158724
@ -125,7 +125,7 @@
|
|||||||
</div>
|
</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
|
<itemCenter
|
||||||
style=""
|
style=""
|
||||||
@ -367,7 +367,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 流程说明模块 -->
|
<!-- 流程说明模块 -->
|
||||||
<div v-if="showModule == 'process'" style="position: relative">
|
<div v-show="showModule == 'process'" style="position: relative">
|
||||||
<img
|
<img
|
||||||
v-smart-img
|
v-smart-img
|
||||||
:src="imageUrl(getImgName('example'))"
|
:src="imageUrl(getImgName('example'))"
|
||||||
@ -381,7 +381,7 @@
|
|||||||
<!-- 弹窗遮罩层 -->
|
<!-- 弹窗遮罩层 -->
|
||||||
<maskLayer :maskLayerShow="maskLayerShow" @click="closedPopup">
|
<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
|
<img
|
||||||
v-smart-img
|
v-smart-img
|
||||||
:src="imageUrl(getImgName('helpInfo'))"
|
:src="imageUrl(getImgName('helpInfo'))"
|
||||||
@ -393,7 +393,7 @@
|
|||||||
|
|
||||||
<!-- 输入邀请码模块 -->
|
<!-- 输入邀请码模块 -->
|
||||||
<div
|
<div
|
||||||
v-if="enterCodeShow"
|
v-show="enterCodeShow"
|
||||||
style="
|
style="
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user