1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- 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'
- })
- }
- }
- },
- }
|