day.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. // pages/day/day.js
  2. const app = getApp();
  3. var host = app.globalData.host;
  4. var id;
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. },
  11. /**
  12. * 生命周期函数--监听页面加载
  13. */
  14. onLoad(options) {
  15. wx.showNavigationBarLoading()
  16. /**获取token */
  17. wx.getStorage({
  18. key: 'userInfo',
  19. success: res => {
  20. this.setData({
  21. userInfo: res.data
  22. })
  23. this.getData(options.id, options.player_id);
  24. },
  25. fail: error => {
  26. //跳转到登陆页面
  27. wx.switchTab({
  28. url: '../user/user',
  29. })
  30. }
  31. })
  32. },
  33. getData(id, player_id) {
  34. wx.request({
  35. url: host + '/api/wx/player/match/record/list',
  36. data: { id: id, player_id: player_id},
  37. header: {
  38. 'Authorization': this.data.userInfo.token
  39. },
  40. success: res => {
  41. console.log(res)
  42. this.setData({
  43. datas: res.data.data
  44. })
  45. wx.hideNavigationBarLoading()
  46. },
  47. fail: error => {
  48. //跳转到登陆页面
  49. wx.switchTab({
  50. url: '../user/user',
  51. })
  52. }
  53. })
  54. },
  55. /**
  56. * 生命周期函数--监听页面初次渲染完成
  57. */
  58. onReady: function () {
  59. },
  60. /**
  61. * 生命周期函数--监听页面显示
  62. */
  63. onShow: function () {
  64. },
  65. /**
  66. * 生命周期函数--监听页面隐藏
  67. */
  68. onHide: function () {
  69. },
  70. /**
  71. * 生命周期函数--监听页面卸载
  72. */
  73. onUnload: function () {
  74. },
  75. /**
  76. * 页面相关事件处理函数--监听用户下拉动作
  77. */
  78. onPullDownRefresh: function () {
  79. },
  80. /**
  81. * 页面上拉触底事件的处理函数
  82. */
  83. onReachBottom: function () {
  84. },
  85. /**
  86. * 用户点击右上角分享
  87. */
  88. onShareAppMessage: function () {
  89. }
  90. })