您的当前位置:首页正文

小程序自定义导航后u-sticky吸顶失效

来源:华佗健康网
//:enable="true" :offset-top="offsetHeight"

 <u-sticky :enable="true" :offset-top="offsetHeight">
        <u-tabs class="" :list="tabsList" item-width="370rpx" active-color="#652906" :is-scroll="true" :current="current" @change="change">
        </u-tabs>
      </u-sticky>


 onLoad (option) {

    uni.getSystemInfo({
      success: (e) => {
        // #ifdef MP-WEIXIN
        let custom = uni.getMenuButtonBoundingClientRect();
        this.offsetHeight = custom.bottom + custom.top - e.statusBarHeight + 68;
        // #endif
        console.log('height', this.offsetHeight)
      },
    });
  },

因篇幅问题不能全部显示,请点此查看更多更全内容