@@ -155,7 +155,6 @@ export default { | |||||
if (this.winHeight > this.$refs.pronbit.getBoundingClientRect().top) { | if (this.winHeight > this.$refs.pronbit.getBoundingClientRect().top) { | ||||
this.isShow = true; | this.isShow = true; | ||||
window.removeEventListener('scroll', this) | window.removeEventListener('scroll', this) | ||||
} | } | ||||
}, | }, | ||||
@@ -37,7 +37,7 @@ | |||||
<div | <div | ||||
class="downloadImg-box" | class="downloadImg-box" | ||||
:style="getHoversColor" | :style="getHoversColor" | ||||
@click="downloadLink(linkData.iosLink)" | |||||
@click="downloadLink(linkData.androidLink)" | |||||
> | > | ||||
<img | <img | ||||
:src="mod.androidDownloadBtn" | :src="mod.androidDownloadBtn" | ||||
@@ -90,6 +90,8 @@ export default { | |||||
}, | }, | ||||
}, | }, | ||||
created() { | created() { | ||||
console.log(this.linkData) | |||||
window.addEventListener("scroll", this.handleScrollx, true); | window.addEventListener("scroll", this.handleScrollx, true); | ||||
this.winHeight = | this.winHeight = | ||||
document.documentElement.clientHeight / 2 || | document.documentElement.clientHeight / 2 || | ||||
@@ -11,7 +11,7 @@ const service = axios.create({ | |||||
service.interceptors.request.use( | service.interceptors.request.use( | ||||
config => { | config => { | ||||
config.headers.master_id = '123456' | config.headers.master_id = '123456' | ||||
config.headers.platform = 'wap' | |||||
config.headers.platform = 'pc' | |||||
return config | return config | ||||
}, | }, | ||||