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) {
this.isShow = true;

window.removeEventListener('scroll', this)
}
},


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

@@ -37,7 +37,7 @@
<div
class="downloadImg-box"
:style="getHoversColor"
@click="downloadLink(linkData.iosLink)"
@click="downloadLink(linkData.androidLink)"
>
<img
:src="mod.androidDownloadBtn"
@@ -90,6 +90,8 @@ export default {
},
},
created() {

console.log(this.linkData)
window.addEventListener("scroll", this.handleScrollx, true);
this.winHeight =
document.documentElement.clientHeight / 2 ||


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

@@ -11,7 +11,7 @@ const service = axios.create({
service.interceptors.request.use(
config => {
config.headers.master_id = '123456'
config.headers.platform = 'wap'
config.headers.platform = 'pc'
return config
},


Loading…
Cancel
Save