score.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. // pages/contest/score/score.js
  2. const app = getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. score: 0,
  9. rank: 0,
  10. statusBar: 0
  11. },
  12. goHome (e) {
  13. wx.reLaunch({
  14. url: '/pages/home/home',
  15. })
  16. },
  17. toLink (e) {
  18. wx.navigateTo({
  19. url: e.currentTarget.dataset.url,
  20. })
  21. },
  22. /**
  23. * 生命周期函数--监听页面加载
  24. */
  25. onLoad: function (options) {
  26. let {rank,id,score} = options
  27. this.setData({
  28. id,
  29. rank,
  30. score
  31. })
  32. wx.getSystemInfo({
  33. success: e => {
  34. this.setData({
  35. statusBar: e.statusBarHeight + 13
  36. })
  37. }
  38. })
  39. },
  40. /**
  41. * 生命周期函数--监听页面初次渲染完成
  42. */
  43. onReady: function () {
  44. },
  45. /**
  46. * 生命周期函数--监听页面显示
  47. */
  48. onShow: function () {
  49. },
  50. /**
  51. * 生命周期函数--监听页面隐藏
  52. */
  53. onHide: function () {
  54. },
  55. /**
  56. * 生命周期函数--监听页面卸载
  57. */
  58. onUnload: function () {
  59. },
  60. /**
  61. * 页面相关事件处理函数--监听用户下拉动作
  62. */
  63. onPullDownRefresh: function () {
  64. },
  65. /**
  66. * 页面上拉触底事件的处理函数
  67. */
  68. onReachBottom: function () {
  69. },
  70. /**
  71. * 用户点击右上角分享
  72. */
  73. onShareAppMessage: function (e) {
  74. if (e.from === 'button') {
  75. console.log(e.target)
  76. }
  77. let {nickname} = wx.getStorageSync('user')
  78. return {
  79. title: `${nickname||'我'}@你,赢得高分,等你挑战!`,
  80. path: 'pages/home/home',
  81. imageUrl: '../../../imgs/home/banner.png',
  82. success: function (res) {
  83. wx.showToast({
  84. title: '分享成功!',
  85. icon: 'none'
  86. })
  87. }
  88. }
  89. }
  90. })