import common from '../../utils/util'; import main from '../../utils/main'; const app = getApp(); Page({ data: { }, onLoad: function (options) { var that = this; if (options.url){ that.setData({ Url:options.url, }); } }, onShareTimeline: function () { return this.onShareAppMessage(); }, onShareAppMessage: function () { return { title: "上海中考招生信息查询工具", path: app.globalData.SharePath + '?UserID=' + app.globalData.userInfo.UserID, imageUrl: app.globalData.ShareImage, } }, })