registration.js 2.2 KB
// pages/registration/registration.js
const app = getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    mask_show: false,
    registrationList:'',
    resumemobile:''
  },

  // 打开mask
  toOpen(e){
    console.log(e)
    this.setData({
      mask_show:true,
      resumemobile: e.currentTarget.dataset.mobile
    })
  },

  // 关闭mask
  toClose(){
    this.setData({
      mask_show: false
    })
  },

  toPositionDetails(e){
    let id = e.currentTarget.dataset.job_id
    let user_id = e.currentTarget.dataset.user_id
    wx.navigateTo({
      url: '/pages/employerDetails/employerDetails?id=' + id + '&userid=' + user_id ,
    })
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.registration()
  },
  //拨打电话
  toSubmit(e){
    console.log(e)
    wx.makePhoneCall({
      phoneNumber: this.data.resumemobile //仅为示例,并非真实的电话号码
    })
  },
  //跳到简历
  myresume(e){
    console.log(e)
    let userid=e.currentTarget.dataset.userid
    wx.navigateTo({
      url: '/pages/myResume2/myResume2?userid='+userid,
    })
  },
  // 报名名单功能
  registration() {

    let that = this;
    let url = 'index/user/boss_job_apply_record';
    let params = {

    }
    let header = {
      "XX-Token": wx.getStorageSync('token'),
      "XX-Device-Type": 'wxapp'
    }
    app.post(url, params, header).then((res) => {
      console.log(res);
      // 获取值
      that.setData({
        registrationList: res.data
      })



    }).catch((err) => {

    })
  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  }
})