12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- export default {
- data() {
- return {
- share: {
- title: "开邻做题家",
- path: "/pages/index/index",
- imageUrl: "分享显示的图片链接",
- 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",
- });
- },
- };
- },
- };
|