choose.js 6.6 KB
// pages/choose/choose.js
const app = getApp();
Page({

  /**
   * 页面的初始数据
   */
  data: {
    fenId: '',
    class_id: '',
    chooseInfo: false
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    console.log(options)
    this.setData({
      fenId: options.fenId,
      class_id: options.class_id,
      id: options.id,
      where: options.where
    })
  },
  getUserInfo(e) {
    wx.showLoading({
      title: '加载中',
      mask: true
    })
    this.setData({
      chooseInfo: false
    })
    let t = this;
    let url = "/api/getopenid/get";
    let data = {
      code: t.data.code,
      encryptedData: e.detail.encryptedData,
      iv: e.detail.iv
    };
    app.post(url, data).then(res => {

      wx.setStorageSync('token', res.data.token);
      wx.setStorageSync('avatarUrl', e.detail.userInfo.avatarUrl);
      wx.setStorageSync('nickName', e.detail.userInfo.nickName);
      let ident = t.data.tempId;
      app.post('/api/getopenid/setuserinfo', {
        ident: t.data.tempId,
      }).then(res => {
        wx.hideLoading()
        if (ident == 1) {
          wx.redirectTo({
            url: '/pages/index/index?fenId=' + t.data.fenId,
          })
        } else {
          if(t.data.class_id){
            wx.redirectTo({
              url: '/pages/joinClass/joinClass?class_id=' + t.data.class_id + '&id=' + t.data.id + '&where=' + t.data.where
            })
          }else{
            wx.redirectTo({
              url: '/pages/parentsDo/parentsDo' 
            })
          }

        }
        wx.setStorageSync('ident', ident);
      }).catch(err => {
        wx.hideLoading()
      })
    }).catch(() => {
      t.setData({
        tempId: ''
      })   
      wx.hideLoading()
      wx.showToast({
        title: '请求失败请重试',
        icon: 'none'
      })
    })
  },
  // 身份判断接口
  identFun() {
    wx.showLoading({
      title: '加载中',
    })
    let t = this;
    let url = '/api/getopenid/getuserinfo';
    app.post(url, {}).then(res => {
      wx.hideLoading();
      wx.setStorageSync('ident', res.data.msg.ident);
      wx.setStorageSync('id', res.data.msg.id);
      // if (res.data.code == 5000) {
      //   wx.showToast({
      //     title: res.data.msg,
      //     icon: 'none',
      //     duration: 1200
      //   })
      //   setTimeout(() => {
      //     wx.navigateTo({
      //       url: '/pages/home/home',
      //     })
      //   }, 1200)
      // } else if (res.data.msg.status == 0) {
      //   wx.showModal({
      //     title: '提示',
      //     showCancel: false,
      //     content: '您已被拉黑'
      //   })
      // } else if (res.data.msg.ident == 0 || res.data.msg.ident == 2) {
      //   wx.redirectTo({
      //     url: '/pages/parentsDo/parentsDo?class_id=' + t.data.class_id + '&id=' + t.data.id + '&where=' + t.data.where,
      //   })
      // } else if (res.data.msg.ident == 1) {
      //   wx.redirectTo({
      //     url: '/pages/index/index?fenId=' + "",
      //   })
      // } else if (res.data.msg.ident == null) {

      //   // if (res.data.msg.login_new == 0) {
      //   //   wx.showToast({
      //   //     title: '请先绑定手机号',
      //   //     icon: 'none',
      //   //     duration: 1200
      //   //   })
      //   //   setTimeout(() => {
      //   //     wx.redirectTo({
      //   //       url: '/pages/home/home?bindUserInfo=1',
      //   //     })
      //   //   }, 1200)
      //   // } else {
      //     wx.showToast({
      //       title: '请选择身份后操作',
      //       icon: 'none',
      //       duration: 1200
      //     })
      //     setTimeout(() => {
      //       wx.redirectTo({
      //         url: '/pages/choose/choose?fenId=' + t.data.fenId + '&class_id=' + t.data.class_id + '&id=' + t.data.id + '&where=' + t.data.where,
      //       })
      //     }, 1200)
      //   // }


      // }

    })
  },
  // 前往教师端选择班级
  goTeacher(e) {
    let t = this;
    let url = '/api/getopenid/setuserinfo';
    let ident = e.currentTarget.dataset.id;

    this.setData({
      tempId: ident,
      chooseInfo: true
    })
    // wx.showModal({
    //   title: '提示',
    //   content: '请确认您将选择此身份入驻,一旦确定暂时无法修改,可能会给您的使用带来不便。',
    //   showCancel: true,
    //   success: function (res) {
    //     if (res.confirm) {
    //       app.post('/api/getopenid/setuserinfo', {
    //         ident: ident,
    //       }).then(res => {
    //         wx.hideLoading()
    //         if (ident == 1) {
    //           wx.redirectTo({
    //             url: '/pages/new_class/new_class?fenId=' + t.data.fenId,
    //           })
    //         } else {
    //           wx.redirectTo({
    //             url: '/pages/joinClass/joinClass?class_id=' + t.data.class_id + '&id=' + t.data.id + '&where=' + t.data.where
    //           })
    //         }
    //         wx.setStorageSync('ident', ident);
    //       })
    //     }
    //   },
    //   fail: function (res) {},
    //   complete: function (res) {},
    // })
    wx.login({
      complete: (res) => {
        t.setData({
          code: res.code
        })
      },
    })


  },
  chooseCount(e) {
    let type = e.currentTarget.dataset.type;
    let token = type == '1' ? 'C4d2ec99102f300a7345c708c999b9090' : type == '2' ? 'C4d2ec99102f300a7345c708c999b9093' : 'C4d2ec99102f300a7345c708c999b9092';
    let id = type == '1' ? '179100' : type == '2' ? '179103' : '179102';
    let url = type == '1' ? '/pages/index/index' : '/pages/parentsDo/parentsDo';
    wx.setStorageSync('testCount', 1);
    wx.setStorageSync('token', token);
    wx.setStorageSync('ident', type);
    wx.setStorageSync('id', id);
    wx.reLaunch({
      url: url,
    })

  },
  cancleAction() {
    this.setData({
      tempId: '',
      chooseInfo: false
    })
  },
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    wx.hideHomeButton({
      success: function () {
        console.log('---')
      }
    })
  },

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

  },

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

  },

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

  },

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

  },

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

  }
})