score.js 1.6 KB

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