jiudandetail.js 3.9 KB
// pages/findblock/jiudandetail/jiudandetail.js
const app=getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    url:'',
    id:'',
    page:1,
    rec_list:[],
    info:""
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.setData({
      url: app.globalData.url,
      id:options.id
    })

    let token=wx.getStorageSync("token");
    if(token==''){
      wx.navigateTo({
        url: '/pages/login/login?id='+this.data.id+'&type='+1,//type=1发现的首页酒单推荐
      })

      wx.setStorageSync("url", "/pages/findblock/jiudandetail/jiudandetail")
    }
    
  },
  //获取酒单详情
  getjiudandetail(){
    let that = this;
    let url = 'index/Find/rec_detail', params = {
      id:that.data.id,
      page:that.data.page

    }
    app.post(url, params).then((res) => {
      console.log(res);
      that.setData({
        rec_list: that.data.rec_list.concat(res.info.rec_list),
        info:res.info
      })

      console.log(that.data.rec_list)



    }).catch((err) => {

    })
  },
  //收藏
  collect(e){
    let id=e.currentTarget.dataset.id;

    let that = this;
    let url = 'index/Common/favorite', params = {
      sort:3,
      id:id

    }
    app.post(url, params).then((res) => {
      console.log(res);
      wx.showToast({
        title: res,
        icon:'none'
      })

      that.getjiudandetail()


    }).catch((err) => {

    })
  },

  //评论
  pinglun(e){
    let id=e.currentTarget.dataset.id;
    wx.navigateTo({
      url: '/pages/myblock/pingjia/pingjia?id='+id+'&type='+1,
    })
  },
  //点赞
  dianzan(e){
    let id=e.currentTarget.dataset.id;

    let that = this;
    let url = 'index/Common/good', params = {
      sort:1,
      id:id

    }
    app.post(url, params).then((res) => {
      console.log(res);
      wx.showToast({
        title: res,
        icon:'none'
      })
      that.getjiudandetail()



    }).catch((err) => {

    })
  },
//酒单收藏
  scollect(e){
    let id=e.currentTarget.dataset.id;
    let that = this;
    let url = 'index/Common/favorite', params = {
      sort:1,
      id:id

    }
    app.post(url, params).then((res) => {
      console.log(res);
      wx.showToast({
        title: res,
        icon:'none'
      })

      let newrec_list = that.data.rec_list;
      for (var obj of newrec_list){
        if(obj.id==id){
          if (obj.is_favorite == 0) {
            obj.is_favorite = 1
          } else {
            obj.is_favorite = 0
          }
        }
        
      }
      that.setData({
        rec_list: newrec_list
      })



    }).catch((err) => {

    })
  },
  
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

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

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

  },

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

  },

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

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {
    let page=this.data.page;
    page++;
    this.setData({
      page:page
    })
    this.getjiudandetail()
  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {
    let that=this;
   
    let url = '/pages/findblock/jiudandetail/jiudandetail?id='+ that.data.id
   


    return {
      title: '发现', // 转发后 所显示的title
      // path: '/pages/home/buildtextdetail/buildtextdetail?buildid='+buildid+'&gettoken='+newtoken, // 相对的路径

      path: url,//建档攻略分享1
      // path:'',
      success: (res) => {    // 成功后要做的事情
        console.log(res)

      },
      fail: function (res) {
        // 分享失败
        console.log(res)
      }
    }
  }
})