Commit 0818d679 authored by JingChao's avatar JingChao

Update index.vue

parent c10a4be0
......@@ -10,6 +10,7 @@
</template>
<script>
import { detectOS } from '../../common/utils/index'
export default {
name: 'HContent',
props: {
......@@ -59,28 +60,28 @@ export default {
return height
},
contentHeight () {
// const headerEl = this.getHeader()
const nextHeight = this.getNextElementHeight()
/* const winHeight = window.innerHeight
const headerEl = this.$el.previousElementSibling
const nextHeight = this.getNextElementHeight()
const winHeight = window.innerHeight
const winWidth = window.innerWidth
let paddingHeight = 0
if (headerEl) {
if (detectOS() === 'ios' && winWidth === 375 && winHeight === 812) {
paddingHeight = 40
} else if (detectOS() === 'ios' && winWidth === 414 && winHeight === 896) {
paddingHeight = 40
paddingHeight = 44
} else if (detectOS() === 'ios') {
paddingHeight = 20
} else {
paddingHeight = 0
}
} */
}
let content = this.$el
let offsetTop = content.offsetTop
/*let offsetTop = content.offsetTop
if (offsetTop >= window.innerHeight) {
offsetTop = 0
}
content.style.height = (window.innerHeight - offsetTop - nextHeight) + 'px'
}*/
content.style.height = (window.innerHeight - nextHeight - paddingHeight) + 'px'
},
},
}
......
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