1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- Page({
-
- data: {
- homeActive:false
- },
-
- onLoad: function (options) {
-
- },
- setTouchMove: function (e) {
- var that = this;
- if (e.touches[0].clientY < 545 && e.touches[0].clientY > 66) {
- that.setData({
- top: e.touches[0].clientY
- })
- }
- },
- open:function(){
- this.setData({
- homeActive: !this.data.homeActive
- })
- },
-
- onReady: function () {
- },
-
- onShow: function () {
- },
-
- onHide: function () {
- },
-
- onUnload: function () {
- },
-
- onPullDownRefresh: function () {
- },
-
- onReachBottom: function () {
- },
-
- onShareAppMessage: function () {
- }
- })
|