获取onShareAppMessage分享参数?
data() { return { //1 轮播图数据列表 swiperList: [], //2 商品数据列表 goodsList: [], //推广参数 id: '', share: { shareId: '10000', //推广用户ID title: '移动业务推广', path: '/pages/home/home?id=1000', // 全局分享的路径,比如 首页 posterImg: 'https://www.fslygo.com:8001/mobile/2023/05/25/poster_20230525235210A007.jpg' } }; }, // 1.发送给朋友 onShareAppMessage(res) { //console.log('onShareAppMessage',res) return { title: this.share.title, path: this.share.path, query: 'id=' + this.share.shareId, imageUrl: this.share.posterImg, } }, //2.分享到朋友圈 onShareTimeline(res) { //console.log('onShareTimeline',res) return { title: this.share.title, path: this.share.path, query: 'id=' + this.share.shareId, imageUrl: this.share.posterImg, } },