my_collect.js 2.7 KB
// pages/my_collect/my_collect.js
const app=getApp()
Page({

 /**
  * 页面的初始数据
  */
 data: {
   navbar: ["已购买","未购买","视频"],
   currentTab: 0,
   keyword:'',
   state:''
 },

 /**
  * 生命周期函数--监听页面加载
  */
 onLoad: function (options) {
   this.getcollect();
   this.showbtn();

 },
  //教学方案列表详情
  detail(e) {
    console.log(e)
    let id = e.currentTarget.dataset.id;
    let free = e.currentTarget.dataset.free;
    wx.navigateTo({
      url: '../teachplan/teachplanlistdetail/teachplanlistdetail?id=' + id + '&free=' + free,
    })
  },
  //是否显示按钮、
  showbtn() {
    let that = this;
    var url = '/home/Welcome/paySwitch';
    var params = {


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



    }).catch((err) => {

    })

  },


 //输入关键字
  enterword(e){
    this.setData({
      keyword:e.detail.value
    })

    this.getcollect()
  },
  navbarTap: function (e) {
    this.setData({
      currentTab: e.currentTarget.dataset.idx,


    })
    this.getcollect()


  },
 getcollect(){
   let that = this;
   var url = '/home/Favorite/favoriteList';
   var params = {
    keyword:that.data.keyword

   }

   var header={
     'XX-Token': wx.getStorageSync('token'),
     'XX-Device-Type':'wxapp'
   }
   app.post(url, params,header).then((res) => {
     console.log(res);

     if (that.data.currentTab==0){
       that.setData({
         is_video: [],
         not_purchased:[],
         purchased: res.purchased
       })
     } else if(that.data.currentTab == 1){
       that.setData({
         is_video: [],
         not_purchased: res.not_purchased,
         purchased: []
       })
     } else if (that.data.currentTab == 2){
       that.setData({
         is_video: res.is_video,
         not_purchased: [],
         purchased: []
       })
     }else{
       that.setData({
         is_video: [],
         not_purchased: [],
         purchased: res.purchased
       })
     }





   }).catch((err) => {

   })
 },

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

 },

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

 },

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

 },

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

 },

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

 },

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

 },

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

 }
})