stars.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. // pages/contest/stars/stars.js
  2. import {
  3. answer
  4. } from '../../../api/api.js'
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. statusBar: 0,
  11. starsNum: 5
  12. },
  13. clickStars(e) {
  14. // console.log(e)
  15. this.setData({
  16. starsNum: e.currentTarget.dataset.index+1
  17. })
  18. },
  19. submit () {
  20. let {starsNum,id} = this.data
  21. answer.submitReviews({reqdata:{
  22. assessScore: starsNum*2,
  23. userAnswerId: id
  24. }},r => {
  25. wx.reLaunch({
  26. url: '/pages/home/home',
  27. success: () => {
  28. setTimeout(()=>{
  29. wx.showToast({
  30. title: '评分成功!',
  31. icon: 'none'
  32. })
  33. },300)
  34. }
  35. })
  36. })
  37. },
  38. goHome (e) {
  39. wx.reLaunch({
  40. url: '/pages/home/home',
  41. })
  42. },
  43. /**
  44. * 生命周期函数--监听页面加载
  45. */
  46. onLoad: function (options) {
  47. let {id} = options
  48. this.setData({
  49. id
  50. })
  51. wx.getSystemInfo({
  52. success: e => {
  53. this.setData({
  54. statusBar: e.statusBarHeight + 13
  55. })
  56. }
  57. })
  58. },
  59. /**
  60. * 生命周期函数--监听页面初次渲染完成
  61. */
  62. onReady: function () {
  63. },
  64. /**
  65. * 生命周期函数--监听页面显示
  66. */
  67. onShow: function () {
  68. },
  69. /**
  70. * 生命周期函数--监听页面隐藏
  71. */
  72. onHide: function () {
  73. },
  74. /**
  75. * 生命周期函数--监听页面卸载
  76. */
  77. onUnload: function () {
  78. },
  79. /**
  80. * 页面相关事件处理函数--监听用户下拉动作
  81. */
  82. onPullDownRefresh: function () {
  83. },
  84. /**
  85. * 页面上拉触底事件的处理函数
  86. */
  87. onReachBottom: function () {
  88. },
  89. /**
  90. * 用户点击右上角分享
  91. */
  92. onShareAppMessage: function () {
  93. }
  94. })