hotel.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. // pages/order/order.js
  2. const app = getApp()
  3. var host = app.globalData.host;
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. act: 0,
  10. huiyi_id:'',
  11. aid:'', //报名id
  12. },
  13. /**
  14. * 生命周期函数--监听页面加载
  15. */
  16. onLoad: function (options) {
  17. this.setData({
  18. aid: options.aid,
  19. huiyi_id: options.id
  20. })
  21. wx.showNavigationBarLoading()
  22. wx.request({
  23. url: host + '/api/signup/hotel/list',
  24. method: 'GET',
  25. data: {
  26. id: options.id
  27. },
  28. success: res => {
  29. wx.hideNavigationBarLoading();
  30. this.setData({
  31. list: res.data.data.list
  32. })
  33. },
  34. fail: function () {
  35. wx.hideLoading();
  36. wx.showToast({
  37. title: '服务器开小差啦!',
  38. icon: 'none'
  39. })
  40. }
  41. })
  42. },
  43. tab: function (e) {
  44. this.setData({
  45. act: e.target.dataset.id
  46. })
  47. },
  48. /**
  49. * 生命周期函数--监听页面初次渲染完成
  50. */
  51. onReady: function () {
  52. },
  53. /**
  54. * 生命周期函数--监听页面显示
  55. */
  56. onShow: function () {
  57. },
  58. /**
  59. * 生命周期函数--监听页面隐藏
  60. */
  61. onHide: function () {
  62. },
  63. /**
  64. * 生命周期函数--监听页面卸载
  65. */
  66. onUnload: function () {
  67. },
  68. /**
  69. * 页面相关事件处理函数--监听用户下拉动作
  70. */
  71. onPullDownRefresh: function () {
  72. },
  73. /**
  74. * 页面上拉触底事件的处理函数
  75. */
  76. onReachBottom: function () {
  77. },
  78. /**
  79. * 用户点击右上角分享
  80. */
  81. onShareAppMessage: function () {
  82. }
  83. })