aa.js 869 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. // pages/aa.js
  2. Page({
  3. /**
  4. * Page initial data
  5. */
  6. data: {
  7. },
  8. /**
  9. * Lifecycle function--Called when page load
  10. */
  11. onLoad: function (options) {
  12. },
  13. /**
  14. * Lifecycle function--Called when page is initially rendered
  15. */
  16. onReady: function () {
  17. },
  18. /**
  19. * Lifecycle function--Called when page show
  20. */
  21. onShow: function () {
  22. },
  23. /**
  24. * Lifecycle function--Called when page hide
  25. */
  26. onHide: function () {
  27. },
  28. /**
  29. * Lifecycle function--Called when page unload
  30. */
  31. onUnload: function () {
  32. },
  33. /**
  34. * Page event handler function--Called when user drop down
  35. */
  36. onPullDownRefresh: function () {
  37. },
  38. /**
  39. * Called when page reach bottom
  40. */
  41. onReachBottom: function () {
  42. },
  43. /**
  44. * Called when user click on the top right corner to share
  45. */
  46. onShareAppMessage: function () {
  47. }
  48. })