personal.js 1.5 KB
// pages/personal/personal.js
// c
const app = getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
  
  },
  getuserBaseInfo() {
  let url = '/user/getGravidaInfo'
  app.post(url, {}).then((res) => {
    wx.hideLoading()
    this.setData({
      age: res.age,
      height: res.height,
      pre_weight: res.pre_weight,
      last_menstruation: res.last_menstruation,
      week: res.week,
      day: res.day,
      name: res.name,
      current_weight: res.current_weight,
      is_single_birth: res.is_single_birth
    })
  })
},
  getUserInfo(){
    wx.navigateTo({
      url: '../userInfo/userInfo',
    })
  },
  changebaseInfo(){
    wx.navigateTo({
      url: '../changeBaseInfo/changeBaseInfo',
    })
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    
  },

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

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

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

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

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

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

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