import common from '../../utils/util'; import main from '../../utils/main'; const app = getApp(); Page({ data: { IsSelect:true, }, onLoad: function (options) { var that = this; that.setData({ Containnerheight: main.getWindowHeight(), }); }, onShow: function () { this.setData({ IsSelect: true, }); }, onClose: function () { this.setData({ IsSelect: false, }); }, onShareAppMessage: function () { return { title: app.globalData.ShareTitle, path: app.globalData.SharePath + '?UserID=' + app.globalData.userInfo.UserID, imageUrl: app.globalData.ShareImage, } }, })