message.js 1.9 KB

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