goodsDetial.js 2.0 KB
// pages/index/goodsDetial/goodsDetial.js
Page({

  /**
   * 页面的初始数据
   */
  data: {
          shoucang:false,
          active:true,
          flag:1,
          show:false
  },
  //切换分量
changeFlag1(){
        this.setData({
                flag:1
        });
},

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function(options) {
          var query = wx.createSelectorQuery();
          var offset = query.select('.itme_list5');
          console.log(offset);
  },
  // 返回上一页
  get_back() {
    wx.navigateBack({})
  },
  // 跳转图文食谱
  get_recipe(){
    wx.navigateTo({
      url: '../production_steps/production_steps',
    })
  },
  // 跳转购物车
  get_car() {
    
    this.setData({
      show:!this.data.show
    });
    wx.switchTab({
      url: '/pages/cart/cart'
    });
  },
  //隐藏mask
  hide_mask(){
    this.setData({
      show: !this.data.show
    });
  },
  //跳至图文详情
        jump_detail(){
                this.setData({
                        active:false
                });
                wx.pageScrollTo({
                        scrollTop: 1400,
                        duration: 300
                })
        },
  //收藏
  collection(){
          this.setData({
                  shoucang:!this.data.shoucang
          });
  },
  
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function() {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function() {
          
  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function() {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function() {

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function() {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function() {

  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function() {

  }
})