mine.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. // pages/mine/mine.js
  2. const app = getApp()
  3. var host = app.globalData.host;
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. userinfo:{}
  10. },
  11. /**
  12. * 生命周期函数--监听页面加载
  13. */
  14. onLoad: function (options) {
  15. wx.getStorage({
  16. key: 'userInfo',
  17. success: res => {
  18. if (res.data) {
  19. this.setData({
  20. userinfo: res.data
  21. })
  22. }
  23. },
  24. })
  25. },
  26. onGotUserInfo: function () {
  27. wx.getUserProfile({
  28. desc: '用于完善会员资料',
  29. success: res => {
  30. //获取基本信息
  31. var data = {
  32. nickName: res.userInfo.nickName,
  33. avatarUrl: res.userInfo.avatarUrl
  34. }
  35. wx.showLoading({
  36. title: '正在登陆',
  37. })
  38. wx.setStorage({
  39. key: 'userInfo',
  40. data: data,
  41. })
  42. this.setData({
  43. userinfo: data
  44. })
  45. wx.request({
  46. url: host + '/api/auth',
  47. method: 'POST',
  48. data: {
  49. nickname: data.nickName,
  50. avatar: data.avatarUrl,
  51. openid: app.globalData.openid,
  52. },
  53. success: res => {
  54. wx.hideLoading()
  55. wx.setStorage({
  56. key: 'uid',
  57. data: res.data.data.uid,
  58. })
  59. },
  60. fail: error => {
  61. wx.hideLoading()
  62. wx.showLoading({
  63. title: '登陆失败',
  64. })
  65. }
  66. })
  67. }
  68. })
  69. },
  70. /**
  71. * 生命周期函数--监听页面初次渲染完成
  72. */
  73. onReady: function () {
  74. },
  75. /**
  76. * 生命周期函数--监听页面显示
  77. */
  78. onShow: function () {
  79. },
  80. /**
  81. * 生命周期函数--监听页面隐藏
  82. */
  83. onHide: function () {
  84. },
  85. /**
  86. * 生命周期函数--监听页面卸载
  87. */
  88. onUnload: function () {
  89. },
  90. /**
  91. * 页面相关事件处理函数--监听用户下拉动作
  92. */
  93. onPullDownRefresh: function () {
  94. },
  95. /**
  96. * 页面上拉触底事件的处理函数
  97. */
  98. onReachBottom: function () {
  99. },
  100. /**
  101. * 用户点击右上角分享
  102. */
  103. onShareAppMessage: function () {
  104. }
  105. })