|
|
@@ -9,7 +9,7 @@
|
|
|
</div>
|
|
|
<!-- 中文版打开新窗口 -->
|
|
|
<div class="xiazai" v-else @click="openNewUrl">
|
|
|
- <img src="../assets/images/xiazai.png" alt="" />下载速霸CX 104产品手册
|
|
|
+ <img src="../assets/images/xiazai.png" alt="" />下载手册
|
|
|
</div>
|
|
|
<!-- 内容简介 -->
|
|
|
<div class="content" v-html="content"></div>
|
|
|
@@ -118,6 +118,8 @@ export default {
|
|
|
components: { Swiper, SwiperSlide, Device },
|
|
|
data() {
|
|
|
return {
|
|
|
+ // 从微信直接扫码进来
|
|
|
+ isT: this.$route.query.t,
|
|
|
// 直接进来还是通过热点进来
|
|
|
isQ: this.$route.query.q,
|
|
|
|
|
|
@@ -311,6 +313,8 @@ export default {
|
|
|
},
|
|
|
mounted() {
|
|
|
this.getData();
|
|
|
+ // 从微信直接打开
|
|
|
+ if (this.isT) this.devieShow = true;
|
|
|
},
|
|
|
beforeCreate() {}, //生命周期 - 创建之前
|
|
|
beforeMount() {}, //生命周期 - 挂载之前
|