rule.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. // pages/activity/rule/rule.js
  2. import httpRequestApi from '../../../utils/APIClient';
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. },
  9. /**
  10. * 生命周期函数--监听页面加载
  11. */
  12. onLoad: function (options) {
  13. // 统计数据
  14. httpRequestApi.postActEvent('REGULATION').success(res => {
  15. console.log('规则页', res)
  16. })
  17. },
  18. /**
  19. * 生命周期函数--监听页面初次渲染完成
  20. */
  21. onReady: function () {
  22. },
  23. /**
  24. * 生命周期函数--监听页面显示
  25. */
  26. onShow: function () {
  27. },
  28. /**
  29. * 生命周期函数--监听页面隐藏
  30. */
  31. onHide: function () {
  32. },
  33. /**
  34. * 生命周期函数--监听页面卸载
  35. */
  36. onUnload: function () {
  37. },
  38. /**
  39. * 页面相关事件处理函数--监听用户下拉动作
  40. */
  41. onPullDownRefresh: function () {
  42. },
  43. /**
  44. * 页面上拉触底事件的处理函数
  45. */
  46. onReachBottom: function () {
  47. },
  48. /**
  49. * 用户点击右上角分享
  50. */
  51. onShareAppMessage: function () {
  52. },
  53. /**
  54. * 下拉
  55. */
  56. onPullDownRefresh: function () {
  57. wx.stopPullDownRefresh() //停止下拉刷新
  58. // wx.showNavigationBarLoading() //在标题栏中显示加载
  59. // //模拟加载
  60. // setTimeout(function () {
  61. // wx.hideNavigationBarLoading() //完成停止加载
  62. // wx.stopPullDownRefresh() //停止下拉刷新
  63. // }, 1000);
  64. },
  65. })