index.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. const app = getApp()
  2. Page({
  3. data: {
  4. message: null
  5. },
  6. onLoad: function(options) {
  7. let msgId = options.id;
  8. let _this = this
  9. _this.setData({
  10. spinShow: true
  11. });
  12. app.formPost('/api/wx/student/user/message/detail/' + msgId, null).then(res => {
  13. _this.setData({
  14. spinShow: false
  15. });
  16. if (res.code === 1) {
  17. _this.setData({
  18. message: res.response,
  19. });
  20. app.formPost('/api/wx/student/user/message/read/' + msgId, null);
  21. }
  22. }).catch(e => {
  23. _this.setData({
  24. spinShow: false
  25. });
  26. app.message(e, 'error')
  27. })
  28. },
  29. /**
  30. * 生命周期函数--监听页面初次渲染完成
  31. */
  32. onReady: function() {
  33. },
  34. /**
  35. * 生命周期函数--监听页面显示
  36. */
  37. onShow: function() {
  38. },
  39. /**
  40. * 生命周期函数--监听页面隐藏
  41. */
  42. onHide: function() {
  43. },
  44. /**
  45. * 生命周期函数--监听页面卸载
  46. */
  47. onUnload: function() {
  48. },
  49. /**
  50. * 页面相关事件处理函数--监听用户下拉动作
  51. */
  52. onPullDownRefresh: function() {
  53. },
  54. /**
  55. * 页面上拉触底事件的处理函数
  56. */
  57. onReachBottom: function() {
  58. },
  59. /**
  60. * 用户点击右上角分享
  61. */
  62. onShareAppMessage: function() {
  63. }
  64. })