const app = getApp();
Page({

  /**
   * 页面的初始数据
   */
  data: {
    star_num: 3,
    datalist: [],
    datalists: '',
    activity_page: 0,
    activity: [],
    page_type: true,
    navList: [{
        path: '/pages/Volunteer_dynamic/Volunteer_dynamic',
        id: 1,
        name: '志愿动态',
        icon: '/imgs/menu1.png',
      },
      {
        path: '/pages/index/active/active',
        id: 2,
        name: '活动招募',
        icon: '/imgs/menu2.png',
      },
      {
        path: '/pages/Volunteer_group/Volunteer_group',
        id: 3,
        name: '志愿团队',
        icon: '/imgs/menu3.png',
      },
      {
        path: '/pages/Online_regulations/Online_regulations',
        id: 4,
        name: '在线培训',
        icon: '/imgs/menu4.png',
      },
      {
        path: '/pages/img_txt/img_txt?status=2',
        id: 5,
        name: '关于我们',
        icon: '/imgs/menu5.png',
      },
      {
        path: '/pages/guanlitiaoli/guanlitiaoli',
        id: 6,
        name: '管理条例',
        icon: '/imgs/menu6.png',
      },
      {
        path: '/pages/guangrongpaihang/guangrongpaihang',
        id: 7,
        name: '光荣排行',
        icon: '/imgs/menu7.png',
      },
      {
        path: '/pages/apply/apply',
        id: 8,
        name: '个人注册',
        icon: '/imgs/menu8.png',
      },
    ]

  },
  // 
  getdatalist() {
    let that = this;
    let url = 'index/index/index';
    let head = {
      'XX-Token': wx.getStorageSync('token')
    }
    let params = {
      volunteer_page: 0,
      volunteer_pageNum: 3,
      activity_page: that.data.activity_page,
      activity_pageNum: 4
    }
    app.post(url, params, head).then((res) => {
      that.setData({
        datalist: res,
        activity: res.activity,
        news: res.news
      })
    }).catch((err) => {

    })
  },

  // 获取个人注册信息
  getdatalists() {
    let that = this;
    let url = 'index/member_center/index';
    let head = {
      'XX-Token': wx.getStorageSync('token')
    }
    app.post(url, {}, head).then((res) => {
      // console.log(res)
      that.setData({
        datalists: res
      })
    }).catch((err) => {

    })
  },

  // 招募活动
  get() {
    wx.navigateTo({
      url: '/pages/index/active/active',
    })
  },



  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    wx.hideShareMenu()

  },
  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    this.getdatalist();
    let that = this;
    that.getdatalists();

  },

  //导航跳转
  gotoNav(e) {
    var path = e.currentTarget.dataset.path
    // console.log(e)
    var id = e.currentTarget.dataset.id;

    if (id != 8) {
      wx.navigateTo({
        url: path,
      })
    } else {
      // console.log( this.data.datalists)
      wx.navigateTo({
        url: path + '?id=' + this.data.datalists.id + "&is_submit=" + this.data.datalists.is_submit,
      })
    }

    // if (wx.getStorageSync('token')) {
    //   wx.navigateTo({
    //     url: path,
    //   })
    // } else {
    //   wx.showModal({
    //     title: '提示',
    //     content: '请先去授权',
    //     success(res) {
    //       if (res.confirm) {
    //         wx.navigateTo({
    //           url: '/pages/shouquan/shouquan',
    //         })
    //       } else if (res.cancel) {

    //       }
    //     }
    //   })
    // }

  },

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

  },



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

  },

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

  },

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

  },

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

  },

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

  }
})