1、配置
onLoad(){
wx.showShareMenu({
withShareTicket:true,
//设置下方的Menus菜单,才能够让发送给朋友与分享到朋友圈两个按钮可以点击
menus:["shareAppMessage","shareTimeline"]
})
},
2、事件
onShareAppMessage(res) {
if (res.from === 'button') {// 来自页面内分享按钮
console.log(res.target)
}
return {
title: 'title', //分享的名称
path: '/pages/hfdt/gztjh',
mpId:'wx6bf107b87c455b99' //此处配置微信小程序的AppId
}
},
//分享到朋友圈
onShareTimeline(res) {
return {
title: '胶南街道召开“红帆支部”观摩学习暨工作推进会',
type: 0,
summary: "",
}
},