uniapp 微信小程序分享页面
<button open-type="share" v-bind:data-student="item" class="share">
分享
</button>
指定按钮的类型open-type="share"
分享需要的信息要使用v-bind:data-student传递,这里student是自己命名。
onShareAppMessage(event) {
console.log(event);
return {
title: event.target.dataset.student.username + "的测试报告",
path: "/pages_report/share/main/main?stuid=" +
event.target.dataset.student.stuid + "&tabIndex=1",
imageUrl: "../../../static/images/share/share_report.png",
}
}
},