...
|
...
|
@@ -28,6 +28,15 @@ |
|
|
},
|
|
|
methods: {
|
|
|
checkReport() {
|
|
|
// 顶部区域可能切换显示和隐藏所以动态获取
|
|
|
const topRect = document.querySelector(`.${this.topClassName}`).getBoundingClientRect();
|
|
|
|
|
|
// 可见区域顶部距离视口的上边的距离
|
|
|
this.viewArea.top = topRect.bottom;
|
|
|
|
|
|
// 可见区域底部距离视口的上边的距离
|
|
|
this.viewArea.bottom = window.screen.height;
|
|
|
|
|
|
let children = _.filter(this.$children, child => {
|
|
|
return child.$options.name === 'ExposureItem'
|
|
|
});
|
...
|
...
|
@@ -47,19 +56,10 @@ |
|
|
},
|
|
|
mounted() {
|
|
|
let timer = setInterval(() => {
|
|
|
const filterRect = document.querySelector(`.${this.topClassName}`).getBoundingClientRect();
|
|
|
|
|
|
// 可见区域顶部距离视口的上边的距离
|
|
|
this.viewArea.top = filterRect.bottom;
|
|
|
|
|
|
// 可见区域底部距离视口的上边的距离
|
|
|
this.viewArea.bottom = window.screen.height;
|
|
|
|
|
|
this.$scrollEl = window;
|
|
|
this.scrollEvent = util.throttle(500, this.checkReport);
|
|
|
if (this.$scrollEl) {
|
|
|
this.$scrollEl.addEventListener('scroll', this.scrollEvent);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (this.$children.length) {
|
...
|
...
|
@@ -68,7 +68,8 @@ |
|
|
}
|
|
|
}, 500);
|
|
|
|
|
|
setInterval(() => {
|
|
|
let reportTimer = setInterval(() => {
|
|
|
if (!this.$children.length) { return clearInterval(reportTimer); }
|
|
|
_.each(_.filter(this.$children, child => child.$options.name === 'ExposureItem'), child => child.report());
|
|
|
}, 3000);
|
|
|
}
|
...
|
...
|
|