(全兼容)uni-app自定义标题计算到状态栏的距离

各端的状态栏距离 使用$开头容易认,避免全局污染

1.调用的时候先在js中赋值,不能直接在模板使用
2.使用padding-top,fix,margin-top均可,注意兼容,一般使用padding-top,有沉浸式效果

onLaunch: function() {
    uni.getSystemInfo({
        success:function(e){
            Vue.prototype.$statusBar = e.statusBarHeight
            // #ifndef MP
            if(e.platform == 'android') {
                Vue.prototype.$customBar = e.statusBarHeight + 50
            }else {
                Vue.prototype.$customBar = e.statusBarHeight + 45
            }
            // #endif
            
            // #ifdef MP-WEIXIN
            let custom = wx.getMenuButtonBoundingClientRect()
            Vue.prototype.$customBar = custom.bottom + custom.top - e.statusBarHeight
            // #endif
            
            // #ifdef MP-ALIPAY
            Vue.prototype.$customBar = e.statusBarHeight + e.titleBarHeight
            // #endif
        }
    })
},

你可能感兴趣的:(uni-app)