list.js 340 B

12345678910111213141516171819
  1. // page/component/list/list.js
  2. Page({
  3. data:{},
  4. onLoad:function(options){
  5. // 页面初始化 options为页面跳转所带来的参数
  6. },
  7. onReady:function(){
  8. // 页面渲染完成
  9. },
  10. onShow:function(){
  11. // 页面显示
  12. },
  13. onHide:function(){
  14. // 页面隐藏
  15. },
  16. onUnload:function(){
  17. // 页面关闭
  18. }
  19. })