|
@@ -4,7 +4,7 @@
|
|
|
<div v-if="device == 'chrome' || device == 'no-chrome'" class="content">
|
|
|
<v-logo></v-logo>
|
|
|
<div class="tool-cover">
|
|
|
- <img :src="detail.postBizData.convertUrl" alt="">
|
|
|
+ <img :src="detail.postBizData.linkImagePath" alt="">
|
|
|
</div>
|
|
|
<!-- 非chrome -->
|
|
|
<div v-if="device == 'no-chrome'">
|
|
@@ -21,7 +21,7 @@
|
|
|
<!-- 移动端 -->
|
|
|
<div v-if="device == 'ios' || device == '安卓'" class="mobile">
|
|
|
<div class="mobile-content">
|
|
|
- <img :src="detail.postBizData.convertUrl" alt="">
|
|
|
+ <img :src="detail.postBizData.linkImagePath" alt="">
|
|
|
<div class="title">Open link on PC to use Subway Surfers</div>
|
|
|
</div>
|
|
|
<div class="area-button">
|
|
@@ -75,7 +75,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
name: 'og:image',
|
|
|
- content: this.detail.postBizData.convertUrl || ''
|
|
|
+ content: this.detail.postBizData.linkImagePath || ''
|
|
|
},
|
|
|
// twitter
|
|
|
{
|
|
@@ -92,7 +92,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
name: 'twitter:image',
|
|
|
- content: this.detail.postBizData.convertUrl || ''
|
|
|
+ content: this.detail.postBizData.linkImagePath || ''
|
|
|
}
|
|
|
]
|
|
|
}
|