Commit 0818d679 authored by JingChao's avatar JingChao

Update index.vue

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