微信小程序scroll-view,swiper设定屏幕高度

取高度值

onLoad:function(){
     var that = this;
    //  这里要非常注意,微信的scroll-view必须要设置高度才能监听滚动事件,所以,需要在页面的onLoad事件中给scroll-view的高度赋值
    wx.getSystemInfo({
    success: function(res) {
      console.log(res.model)
      console.log(res.pixelRatio)
      console.log(res.windowWidth)
      console.log(res.windowHeight)
      that.setData({
          windowH:res.windowHeight-44
        });
      console.log(res.language)
      console.log(res.version)
      console.log(res.platform)
    }
    })
 },

设置高度值


  
    
      
        {{item.title}}
      
    
  
 
 
 
    
      
        
            
            
              
                
                  待支付
                  立即支付
                
                
                  杭州大酒店
                  ¥120
                
                
                  2016-02-10至2016-02-13
                
                
                  1间 1晚 标准双人床-不含早
                  携程代理
                
              
              
            
          
      
    
  


你可能感兴趣的:(微信小程序scroll-view,swiper设定屏幕高度)