Browse Source

更新111

master
Eddie 3 years ago
parent
commit
22e5aedaff
3 changed files with 4 additions and 3 deletions
  1. +0
    -1
      src/components/ContentDesign.vue
  2. +3
    -1
      src/components/Download.vue
  3. +1
    -1
      src/utlis/utlis.js

+ 0
- 1
src/components/ContentDesign.vue View File

@@ -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)
} }
}, },


+ 3
- 1
src/components/Download.vue View File

@@ -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 ||


+ 1
- 1
src/utlis/utlis.js View File

@@ -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
}, },


Loading…
Cancel
Save