const app = getApp(); Page({ /** * 页面的初始数据 */ data: { url:'https://www.jucai.gov.cn/mobile/recuperate/index' }, onLoad(options) { if (options.url) { this.setData({url:options.url}); } }, /** * 用户点击右上角分享 */ onShareAppMessage: function (options) { return { title: "人才疗休养活动", path: '/pages/webview/recuperate/recuperate?url='+options.webViewUrl, imageUrl: '/common/images/share/share_recuperate.jpg', }; } })