score.js 1.4 KB

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