| 123456789101112131415161718192021 |
- import common from '../../utils/util';
- import main from '../../utils/main';
- const app = getApp();
- Page({
- data: {
- },
- onLoad: function (options) {
- this.setData({
- Containnerheight: main.getWindowHeight(),
- });
- wx.hideShareMenu();
- },
- onPullDownRefresh:function(){
- wx.reLaunch({
- url: './index',
- })
- }
- });
|