计算设备顶部状态栏高度,胶囊数据计算,自定义标题栏

    uni.getSystemInfo({
                success: (e) => {
                    let statusBar = e.statusBarHeight
                    this.customBar = 'top:' + (statusBar + 6) + 'px'
                }
            })
// 获取系统状态栏的高度
    let menuButtonInfo = {};
    // 如果是小程序,获取右上角胶囊的尺寸信息,避免导航栏右侧内容与胶囊重叠(支付宝小程序非本API,尚未兼容)
    // #ifdef MP-WEIXIN || MP-BAIDU || MP-TOUTIAO || MP-QQ
    menuButtonInfo = uni.getMenuButtonBoundingClientRect();
    // #endif 

你可能感兴趣的:(计算设备顶部状态栏高度,胶囊数据计算,自定义标题栏)