com_top_nav.js 390 Bytes
var t = getApp(),os = t.globalData.setting;
Component({
  properties: {},
  data: {
    iurl: os.imghost,
    height:0,
    h1:0,
    h2:0
  },
  ready: function() {
      let height= getApp().globalData.navBarHeight;
      let menuInfo = getApp().globalData.menuInfo;
      //-- 胶囊的高度 --
      this.setData({height,h1:menuInfo.top,h2:menuInfo.height});
  },
  methods: {

  }

})