|
|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<view class="content">
|
|
|
- <top-title :titleValue="title" style="width: 100%;"></top-title>
|
|
|
+ <top-title :titleValue="title" :pageScroll="scrollVal" style="width: 100%;"></top-title>
|
|
|
<view class="page-section-spacing" style="width: 100%; position: relative">
|
|
|
<swiper
|
|
|
class="swiper"
|
|
|
@@ -289,6 +289,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
title:"Air企通",
|
|
|
+ scrollVal:Number,
|
|
|
swiperList: [
|
|
|
{
|
|
|
img: "/static/swiper/swiper1.jpg",
|
|
|
@@ -421,6 +422,7 @@ export default {
|
|
|
this.getSwiperList();
|
|
|
this.getPark();
|
|
|
this.getNotice();
|
|
|
+ console.log(getApp().global)
|
|
|
//this.getAttract(); //招商接口
|
|
|
},
|
|
|
onShareAppMessage() {
|
|
|
@@ -654,6 +656,9 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
},
|
|
|
+ onPageScroll(e) {
|
|
|
+ this.scrollVal = e.scrollTop;
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
|