Commit d7258427 authored by JingChao's avatar JingChao

Update index.vue

parent 85837c69
...@@ -163,14 +163,20 @@ export default { ...@@ -163,14 +163,20 @@ export default {
do { do {
if (nextElement) { if (nextElement) {
let elHeight = window.getComputedStyle(nextElement).height let elHeight = window.getComputedStyle(nextElement).height
if (elHeight) { let part = /^\d+(\.\d+)?px$/
if (elHeight && part.test(elHeight)) {
nextHeight += Number(elHeight.replace('px', '')) nextHeight += Number(elHeight.replace('px', ''))
} }
if (nextElement._prevClass && nextElement._prevClass.indexOf('h-bottom-tab') === 0) { if (nextElement._prevClass && nextElement._prevClass.indexOf('h-bottom-tab') === 0) {
if (detectOS() === 'ios' && vm.winWidth === 375 && vm.winHeight === 812) { let height = nextElement.clientHeight
nextHeight += vm.fontSize * 0.68 if (detectOS() === 'ios' && height > Math.ceil(vm.fontSize * 0.88)) {
} else if (detectOS() === 'ios' && vm.winWidth === 414 && vm.winHeight === 896) { nextHeight += 0
nextHeight += vm.fontSize * 0.68 } else {
if (detectOS() === 'ios' && vm.winWidth === 375 && vm.winHeight === 812) {
nextHeight += vm.fontSize * 0.68
} else if (detectOS() === 'ios' && vm.winWidth === 414 && vm.winHeight === 896) {
nextHeight += vm.fontSize * 0.68
}
} }
} }
nextElement = nextElement.nextElementSibling nextElement = nextElement.nextElementSibling
......
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