123456789101112131415161718192021222324 |
- var app = getApp();
- Page({
- data:{
- },
- onLoad:function(options){
- // 页面初始化 options为页面跳转所带来的参数
- },
- onReady:function(){
-
- },
- onShow:function(){
- // 页面显示
-
- },
- onHide:function(){
- // 页面隐藏
-
- },
- onUnload:function(){
- // 页面关闭
-
- }
- })
|