Commit a28539fe authored by JingChao's avatar JingChao

Update index.vue

parent 7a70092f
...@@ -118,10 +118,15 @@ export default { ...@@ -118,10 +118,15 @@ export default {
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