方法写在 watch 当中,因为要监听 initData 中的数据变化
watch: {
initData () {
let H = document.querySelector('.boxShadow')
H.style.height = ''
setTimeout(() => {
console.log(H.offsetHeight)
if (H.offsetHeight < window.innerHeight) {
document.body.style.height = window.innerHeight + 'px'
H.style.height = window.innerHeight - 30 + 'px'
} else {
document.body.style.height = H.offsetHeight + 'px'
H.style.height = ''
}
}, 300)
}
}
boxShadow 为定义的类的
<style lang="scss">
.boxShadow{
padding: 0 16px 10px;
}
.el-tabs__item{
color: #2f353b!important;
font-size: 16px!important;
}
.Information_box{
width: 100%;
height: 44px;
border-bottom: 1px solid #ccc;
}
.Information{
float: left;
font-size: 16px;
display: inline-block;
line-height: 42px;
border-bottom: 3px solid #42a5f5;
}
.el-pagination {
float: right;
}
</style>
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/66454.html