remind.js 2.0 KB
// pages/remind/remind.js
Page({

  /**
   * 页面的初始数据
   */
  data: {
    user_type: ['一级用户','二级用户','三级用户'],
    type_index:-1,
    currentTab: 0,
    edit_state: false,
    remind_time: '',
    follow_time: '',
    place: ''
  },
  //用户等级
  userType(e){
    this.setData({
      type_index:e.detail.value
    })
  },
  //点击切换
  tabCharge(e) {
    var that = this;
    if (this.data.currentTab === e.target.dataset.current) {
      return false;
    } else {
      that.setData({
        currentTab: e.target.dataset.current
      })
    }
  },
  //修改信息
  editInfo() {
    this.setData({
      edit_state: true
    })
  },
  //提醒时间
  remindTime(e) {
    this.setData({
      remind_time: e.detail.value,
    })
  },
  //跟踪时间
  followTime(e) {
    this.setData({
      follow_time: e.detail.value,
    })
  },
  //地点
  place(e) {
    this.setData({
      place: e.detail.value,
    })
  },
  //清空
  nullValue() {
    this.setData({
      remind_time: '',
      follow_time: '',
      place: ''
    })
  },
  //完成
  finish() {
    this.setData({
      edit_state: false
    })
  },
  //添加日志
  addLogs() {
    wx.navigateTo({
      url: '../addLog/addLog',
    })
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function(options) {
    this.setData({
      currentTab: options.currentTab
    })
  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  }
})