Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

99 lignes
1.5 KiB

  1. // Pages/HGBot/Home.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. },
  8. /**
  9. * 抽签->投票->悄悄话
  10. */
  11. onRet:function(){
  12. wx.reLaunch({
  13. url: '/Pages/menu/menu',
  14. })
  15. },
  16. onRd:function(){
  17. wx.navigateTo({
  18. url: '/Pages/HGBot/Rd/Rd',
  19. })
  20. },
  21. onVote:function(){
  22. wx.navigateTo({
  23. url: '/Pages/HGBot/Vote/send/send',
  24. })
  25. },
  26. onWhisper:function(){
  27. wx.navigateTo({
  28. url: '/Pages/HGBot/Whisper/send/getMsg',
  29. })
  30. },
  31. home:function(){
  32. wx.redirectTo({
  33. url: '/Pages/menu/menu',
  34. })
  35. },
  36. /**
  37. * 生命周期函数--监听页面加载
  38. */
  39. onLoad: function (options) {
  40. },
  41. /**
  42. * 生命周期函数--监听页面初次渲染完成
  43. */
  44. onReady: function () {
  45. },
  46. /**
  47. * 生命周期函数--监听页面显示
  48. */
  49. onShow: function () {
  50. },
  51. /**
  52. * 生命周期函数--监听页面隐藏
  53. */
  54. onHide: function () {
  55. },
  56. /**
  57. * 生命周期函数--监听页面卸载
  58. */
  59. onUnload: function () {
  60. },
  61. /**
  62. * 页面相关事件处理函数--监听用户下拉动作
  63. */
  64. onPullDownRefresh: function () {
  65. },
  66. /**
  67. * 页面上拉触底事件的处理函数
  68. */
  69. onReachBottom: function () {
  70. },
  71. /**
  72. * 用户点击右上角分享
  73. */
  74. onShareAppMessage: function () {
  75. }
  76. })