guanzhu.js 6.1 KB
// pages/myblock/guanzhu/guanzhu.js
const app = getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    navbar:['酒企','酿酒师'],
    currentTab: 0,
    url:'',
    page: 1,
    compony:[],
    noData: true
  },
  getWine(){
    let url = '/user/Center/concern_company',params = {
      page: this.data.page
    };
    app.post(url,params).then(r=>{
      var list = this.data.page == 1 ? r.list : this.data.compony.concat(r.list);
      this.setData({
        compony: list,
        totalPage: r.total_page,
        noData: list.length>0?true:false
      })
    })
  },
  getTeach() {
    let url = '/user/Center/concern_winemaker ', params = {
      page: this.data.page
    };
    app.post(url, params).then(r => {
      var list = this.data.page == 1 ? r.list : this.data.compony.concat(r.list);
      this.setData({
        compony: list,
        totalPage: r.total_page,
        noData: list.length > 0 ? true : false
      })
    })
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.setData({
      url: app.globalData.url
    })
    
  },  
  navbarTap: function (e) {
    let idx = e.currentTarget.dataset.idx;
    this.setData({
      currentTab: e.currentTarget.dataset.idx,
      page:1
    });
    
     wx.setStorageSync("guantype", '')
    
    idx==0?this.getWine():this.getTeach();
  },

  //关注和取消关注
  atten(e){
    
    let that = this;
    let id = e.currentTarget.dataset.id;
    console.log(id)
    var url = 'index/Common/concern';
    var params = {
      sort: 1,
      id:id

    }
    app.post(url, params).then((res) => {
      console.log(res);
      wx.showToast({
        title: res,
        icon:'none'
      })
      let newcompony = that.data.compony;
      for (var obj of newcompony){
        if(obj.id==id){
          if (obj.is_concern==0){
            obj.is_concern =1
          }else{
            obj.is_concern = 0
          }
        }
      }

      that.setData({
        compony: newcompony
      })


    }).catch((err) => {

    })
  },

  //酒企详情
  jumpcompany(e) {
    let id = e.currentTarget.dataset.id
    wx.navigateTo({
      url: '/pages/homeblock/companyintro/companyintro?id=' + id,
    })
  },
//酿酒师关注
  jiuatten(e){
    let that = this;
    let id = e.currentTarget.dataset.id;
    console.log(id)
    var url = 'index/Common/concern';
    var params = {
      sort: 2,
      id: id

    }
    app.post(url, params).then((res) => {
      console.log(res);
      wx.showToast({
        title: res,
        icon: 'none'
      })
      let newcompony = that.data.compony;
      for (var obj of newcompony) {
        if (obj.id == id) {
          if (obj.is_concern == 0) {
            obj.is_concern = 1
          } else {
            obj.is_concern = 0
          }
        }
      }

      that.setData({
        compony: newcompony
      })


    }).catch((err) => {

    })
  },

  //点赞和取消点赞
  zan(e) {
    let that = this;
    let id = e.currentTarget.dataset.id;
    let url = 'index/Common/good', params = {
      id: id,
      sort: 3


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

      let newcompony = that.data.compony;
      for (var obj of newcompony) {
        if (obj.id == id) {
          if (obj.is_good == 0) {
            obj.is_good = 1;
            obj.good_count = obj.good_count + 1
          } else {
            obj.is_good = 0;
            if (obj.good_count == 0) {
              obj.good_count = 0
            } else {
              obj.good_count = obj.good_count - 1
            }
          }
        }
      }

      that.setData({
        compony: newcompony
      })




    }).catch((err) => {

    })
  },
  //评论
  ping(e) {
    let id = e.currentTarget.dataset.id;
    wx.navigateTo({
      url: '/pages/myblock/pingjia/pingjia?winemaker_id=' + id + '&type=' + 3,
    })
  },
  //酿酒大师详情
  niangjiuteacherdetail(e) {
    let id = e.currentTarget.dataset.id;
    wx.navigateTo({
      url: '/pages/homeblock/niangjiuteacher/niangjiuteacher?id=' + id,
    })
  },
  //酿酒大师详情
  niangjiuteacherdetail(e) {
    let id = e.currentTarget.dataset.id;
    wx.navigateTo({
      url: '/pages/homeblock/niangjiuteacher/niangjiuteacher?id=' + id,
    })
  },
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    let guantype = wx.getStorageSync("guantype")
    if(guantype==1){
      this.setData({
        currentTab: 1,
        page: 1
      });

      this.getTeach()
    }else{
      this.getWine();
    }
    
    
    
  },

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

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function () {
    wx.setStorageSync("guantype", '')
  },

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

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {
    this.data.page < this.data.totalPage ?(
      this.data.currentTab == 0? (this.setData({
        page: page+1
      }), this.getWine()) : (this.setData({
        page: page + 1
      }), this.getTeach())
    ):wx.showToast({
      title: '没有更多了',
      icon:'none'
    })
  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function (e) {
    let that = this;
    wx.setStorageSync("guantype", 1)

    let id = e.target.dataset.id;


    let url = '/pages/homeblock/niangjiuteacher/niangjiuteacher?id=' + 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(8989)
        // 分享失败
        console.log(res)
        wx.setStorageSync("guantype",1)
      }
    }
  }
})