| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // pages/login/login.js
- Page({
- /**
- * Page initial data
- */
- data: {},
- /**
- * Lifecycle function--Called when page load
- */
- onLoad(options) {},
- /**
- * Lifecycle function--Called when page is initially rendered
- */
- onReady() {},
- /**
- * Lifecycle function--Called when page show
- */
- onShow() {},
- /**
- * Lifecycle function--Called when page hide
- */
- onHide() {},
- /**
- * Lifecycle function--Called when page unload
- */
- onUnload() {},
- /**
- * Page event handler function--Called when user drop down
- */
- onPullDownRefresh() {},
- /**
- * Called when page reach bottom
- */
- onReachBottom() {},
- /**
- * Called when user click on the top right corner to share
- */
- onShareAppMessage() {}
- })
|