uniapp获取底部导航tabbar的高度(H5)
<view :style="'bottom:' + tabBarHeight + 'px;'">
</view>
<script>
import {
request
} from '@/request/request.js';
export default {
data() {
return {
tabBarHeight: 0, // 底部tabBar高度, h5
}
},
onLoad() {
this.$nextTick(()=>{
// #ifdef H5
getTabBarHeight(){
const systemInfo = uni.getSystemInfoSync()
this.tabBarHeight = systemInfo.windowBottom
},
// #endif
})
},
}