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