course.js 2.4 KB
// pages/course/course.js
const app = getApp()
Page({
  data: {
    imgsUrls:[],
    currentindex: 0,
    current: 0,
    cate_id: 8,//备考策略->8,解题方法->9,经典系列->10
    listinfo:[],
  },
  handleChange(e) {
    this.setData({
      currentindex: e.detail.current
    })
  },
  chargeTab(e) {
    this.setData({
      current: e.currentTarget.dataset.current
    })
    if (this.data.current == 0) {
      this.setData({
        cate_id: 8
      })
      this.testStrategy()
    } else if (this.data.current == 1) {
      this.setData({
        cate_id: 9
      })
      this.testStrategy()
    } else if (this.data.current == 2) {
      this.setData({
        cate_id: 10
      })
      this.testStrategy()
    }
  },
  courseDetail(e) {
    var id=e.currentTarget.dataset.id
    wx.navigateTo({
      url: '../course/courseDetail/courseDetail?id='+id,
    })
  },
  //获取听大仙讲GMAT列表
  //备考策略->8,解题方法->9,经典系列->10
  testStrategy() {
    let url = 'Show/getShow1'
    let params = {
      cate_id: this.data.cate_id
    }
    app.post(url, params).then((res) => {
      if(res.data.code==1){
        this.setData({
          listinfo:res.data.data
        })
      }
    }).catch((errMsg)=>{
      console.log(errMsg)
    })
  },
  //获取听大仙讲GMATbanner
  GMATbanner(){
    let that=this;
    let url ='Show/getShow7';
    app.post(url,{}).then((res)=>{
      console.log(res)
      if(res.data.code==1){
        that.setData({
          imgsUrls:res.data.data
        })
      }
    }).catch((errMsg)=>{
      console.log(errMsg)
    })
  },


  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function(options) {
    let that=this;
    this.testStrategy();
    that.GMATbanner();
  },

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

  },

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

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

  },

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

  },

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

  },

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

  },

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

  }
})