Commit 7f68c402 authored by zhangyanni's avatar zhangyanni

提交

parent 381a9a4b
<template> <template>
<div class="overfolowWrapper" ref="overfolowWrapper" @scroll.passive="getScroll($event)"> <div class="overfolowWrapper" ref="overfolowWrapper" @scroll.passive="getScroll($event)" v-if="articleInfo">
<div class="articleDetail" v-if="articleInfo" :style="{marginBottom: !$route.query.isShow&&!isCanComment&&recommendListData.length==0?'1.2rem':''}"> <div class="articleDetail" :style="{marginBottom: !$route.query.isShow&&!isCanComment&&recommendListData.length==0?'1.2rem':''}">
<p class="title"> <p class="title">
{{articleInfo.contentTitle}} {{articleInfo.contentTitle}}
</p> </p>
...@@ -330,8 +330,8 @@ ...@@ -330,8 +330,8 @@
} }
}, },
getScroll(e) { getScroll(e){
this.top = event.target.scrollTop; this.top = e.target.scrollTop;
if(this.top>window.innerHeight) this.isShowTop = true; if(this.top>window.innerHeight) this.isShowTop = true;
else this.isShowTop = false; else this.isShowTop = false;
...@@ -921,6 +921,13 @@ ...@@ -921,6 +921,13 @@
this.getArticleDetail(); this.getArticleDetail();
this.getRecommendListDetail(); this.getRecommendListDetail();
}, },
top(newVal,oldVal){
if(newVal!=oldVal){
if(this.articleInfo.videoAudioType==1){
document.getElementsByTagName("video")[0].pause();
}
}
}
}, },
beforeDestroy () { beforeDestroy () {
...@@ -1712,5 +1719,6 @@ ...@@ -1712,5 +1719,6 @@
} }
.overfolowWrapper{ .overfolowWrapper{
overflow-x: hidden; overflow-x: hidden;
height: calc(100vh - 2.2rem);
} }
</style> </style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment