新增下载二维码

This commit is contained in:
yuyongdong 2024-05-02 09:35:32 +08:00
parent 68100ee167
commit db5ef89f56
8 changed files with 63 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
src/assets/common/app.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -134,6 +134,16 @@
</li>
<li class="explore-btn" @click="exploreCli(stepTicket)">Explore Map</li>
</div>
<div class="explore-download" v-if="navIndex == 0">
<li v-for="(item, index) in download" :key="index">
<div class="download-img">
<img :src="item.imgSrc" alt="">
</div>
<div class="download-img-hover">
<img :src="item.imgSrcHover" alt="">
</div>
</li>
</div>
</div>
</div>
<div class="right">
@ -874,6 +884,23 @@ export default {
}
],
navIndex: 0,
download: [
{
name: '',
imgSrc: require("@/assets/common/andriod.png"),
imgSrcHover: require("@/assets/common/counterfire-apk.png"),
},
{
name: '',
imgSrc: require("@/assets/common/app.png"),
imgSrcHover: require("@/assets/common/appstore.png"),
},
{
name: '',
imgSrc: require("@/assets/common/google.png"),
imgSrcHover: require("@/assets/common/googleplay.png"),
},
],
walletDialogVisible: false,
gameStateData: {},
activityName: "",
@ -2064,6 +2091,38 @@ export default {
cursor: pointer;
}
}
.explore-download {
position: absolute;
right: 30px;
bottom: 90px;
li {
position: relative;
margin-top: 10px;
cursor: pointer;
.download-img {
width: 120px;
height: 35px;
}
.download-img-hover {
display: none;
width: 120px;
height: 120px;
position: absolute;
top: -120px;
left: 0;
z-index: 99;
}
img {
width: 100%;
height: 100%;
}
&:hover {
.download-img-hover {
display: block;
}
}
}
}
}
}
.right {

View File

@ -634,6 +634,9 @@ export default {
color: #979797;
font-size: 14px;
}
.name {
font-size: 14px;
}
}
}
}
@ -645,6 +648,7 @@ export default {
font-size: 14px;
}
.records {
font-size: 14px;
text-align: left;
}
.icon {