You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 rivejä
1.5 KiB

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