myResume.js 3.1 KB
// pages/myResume/myResume.js
Page({

  /**
   * 页面的初始数据
   */
  data: {
    images: '',
    date: '2016-09-01',

    educationArray: ['不限','小学及以下', '初中', '高中', '中专/技校','大专','本科','硕士','博士'],
    // objectArray: [
    //   {
    //     id: 0,
    //     name: '美国'
    //   },
    //   {
    //     id: 1,
    //     name: '中国'
    //   },
    //   {
    //     id: 2,
    //     name: '巴西'
    //   },
    //   {
    //     id: 3,
    //     name: '日本'
    //   }
    // ],
    educationIndex: 0,

    workYearArray: ['1年', '2年', '3年', '4年', '5年'],
    // objectArray: [
    //   {
    //     id: 0,
    //     name: '美国'
    //   },
    //   {
    //     id: 1,
    //     name: '中国'
    //   },
    //   {
    //     id: 2,
    //     name: '巴西'
    //   },
    //   {
    //     id: 3,
    //     name: '日本'
    //   }
    // ],
    workYearIndex: 0,
  },
  // 出生日期
  bindDateChange: function (e) {
    console.log('picker发送选择改变,携带值为', e.detail.value)
    this.setData({
      date: e.detail.value
    })
  },
  // 时间
  education: function (e) {
    console.log('picker发送选择改变,携带值为', e.detail.value)
    this.setData({
      educationIndex: e.detail.value
    })
  },
  // 工作年限
  workYear: function (e) {
    console.log('picker发送选择改变,携带值为', e.detail.value)
    this.setData({
      workYearIndex: e.detail.value
    })
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {

  },

  // 选择图片
  chooseImage: function () {
    // 选择图片
    wx.chooseImage({
      count: 3, // 默认9
      sizeType: ['compressed'],
      sourceType: ['album', 'camera'],
      // 可以指定来源是相册还是相机,默认二者都有
      success: function (res) {
        console.log(res)
        // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
        var tempFilePaths = res.tempFilePaths;
          that.setData({
            images: that.data.image.concat(tempFilePaths)
          })
        console.log(images)
        // if (that.data.companyortrue == true) {
        //   that.setData({
        //     companyimages: that.data.companyimages.concat(tempFilePaths)
        //   });
        // } else {
        //   that.setData({
        //     images: that.data.images.concat(tempFilePaths)
        //   });
        // }

      }
    })
  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  }
})