六 mixins/share.js

79 阅读1分钟
	//分享给朋友圈
	onShareTimeline( res ){
		
	},
	//分享给好友
	onShareAppMessage( res ){
		if( res.from =='button' ){
			let { id , img , title } = this.goods;
			return {
				title, //分享出去的标题
				imageUrl:img, //分享出去的图片
				path:`/pages/goods-detail?id=${id}` //朋友点击分享内容进入的链接
			}
		}
	}
}