export default { data() { return { share: { title: '24节气养生文化', path: '/pages/index/index', imageUrl: 'http://cho-health-mutual-commune.oss-cn-beijing.aliyuncs.com/jujingsolarterm/solarterm_banner.png', desc: '' } } }, // 分享到微信好友功能 onShareAppMessage(res) { return { title: this.share.title, path: this.share.path, desc: this.share.desc, imageUrl: this.share.imageUrl, success(res) { uni.showToast({ title: '分享成功' }) }, fail(res) { uni.showToast({ title: '分享失败', icon: 'none' }) } } }, // 分享到朋友圈功能 onShareTimeline(res) { return { title: this.share.title, path: this.share.path, desc: this.share.desc, imageUrl: this.share.imageUrl, success(res) { uni.showToast({ title: '分享成功' }) }, fail(res) { uni.showToast({ title: '分享失败', icon: 'none' }) } } }, }