myself.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. // pages/myself/myself.js
  2. const app = getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. imageUrl: app.globalData.imageUrl,
  9. childTitle:"我的",
  10. },
  11. goNavigateTo(e) {
  12. wx.navigateTo({
  13. url: e.currentTarget.dataset.url
  14. })
  15. },
  16. callPhone(){
  17. wx.makePhoneCall({
  18. phoneNumber: '4006991077',
  19. fail(res){
  20. console.log('取消拨打')
  21. }
  22. })
  23. },
  24. /**
  25. * 生命周期函数--监听页面加载
  26. */
  27. onLoad: function (options) {
  28. },
  29. /**
  30. * 生命周期函数--监听页面初次渲染完成
  31. */
  32. onReady: function () {
  33. },
  34. /**
  35. * 生命周期函数--监听页面显示
  36. */
  37. onShow: function () {
  38. wx.hideHomeButton()
  39. this.setData({
  40. userAvatar: wx.getStorageSync('student').headImg,
  41. userName: wx.getStorageSync('student').name
  42. })
  43. },
  44. /**
  45. * 生命周期函数--监听页面隐藏
  46. */
  47. onHide: function () {
  48. },
  49. /**
  50. * 生命周期函数--监听页面卸载
  51. */
  52. onUnload: function () {
  53. },
  54. /**
  55. * 页面相关事件处理函数--监听用户下拉动作
  56. */
  57. onPullDownRefresh: function () {
  58. },
  59. /**
  60. * 页面上拉触底事件的处理函数
  61. */
  62. onReachBottom: function () {
  63. },
  64. /**
  65. * 用户点击右上角分享
  66. */
  67. onShareAppMessage: function () {
  68. }
  69. })