|
@@ -71,7 +71,7 @@
|
|
<div class="t-label">{{langScenes.share.shareto}}</div>
|
|
<div class="t-label">{{langScenes.share.shareto}}</div>
|
|
<div class="img-share" v-for="(item,i) in imgs" :key="i">
|
|
<div class="img-share" v-for="(item,i) in imgs" :key="i">
|
|
<div v-if="item.id === 0" class="trangle"></div>
|
|
<div v-if="item.id === 0" class="trangle"></div>
|
|
- <img v-if="item.id === 0 && num" class="qrcode" :src="`https://pro.4dkankan.com/sceneQRcode/${num}.png`" alt="">
|
|
|
|
|
|
+ <img v-if="item.id === 0 && num" class="qrcode" :src="`/sceneQRcode/${num}.png?rnd=${rnd}`" alt="">
|
|
<img class="share-logo" :src="item.img" @click="toShare(item)" :alt="langScenes.share.share">
|
|
<img class="share-logo" :src="item.img" @click="toShare(item)" :alt="langScenes.share.share">
|
|
</div>
|
|
</div>
|
|
<p class="t-label">{{langScenes.share.qianru}}</p>
|
|
<p class="t-label">{{langScenes.share.qianru}}</p>
|
|
@@ -130,6 +130,7 @@ export default {
|
|
showShare: false,
|
|
showShare: false,
|
|
imgs,
|
|
imgs,
|
|
num: '',
|
|
num: '',
|
|
|
|
+ rnd: Math.random(),
|
|
lwidth: 853,
|
|
lwidth: 853,
|
|
lheight: 480,
|
|
lheight: 480,
|
|
url: 'https://pro.4dkankan.com/showProPC.html?m=KcMeJlOr8',
|
|
url: 'https://pro.4dkankan.com/showProPC.html?m=KcMeJlOr8',
|
|
@@ -235,6 +236,7 @@ export default {
|
|
handleShare (item) {
|
|
handleShare (item) {
|
|
this.url = item.webSite.replace('http://', 'https://')
|
|
this.url = item.webSite.replace('http://', 'https://')
|
|
this.num = item.num
|
|
this.num = item.num
|
|
|
|
+ this.rnd = Math.random()
|
|
this.item = item
|
|
this.item = item
|
|
this.showShare = true
|
|
this.showShare = true
|
|
},
|
|
},
|