
- <button
- style="margin-right:20rpx;color:#21C9A0"
- size="small"
- text="邀请参与"
- :id="item.questionTid"
- class="button survey-item-btn-1"
- color="#E3FFF8"
- open-type="share"
- >邀请参与button>
跟methods同级,不是在methods里面
- onShareAppMessage(options) {
- console.log(options);
- if (options.from == "button") {
- var eData = options.target;
- }
- return {
- title: "问卷调查",
- path: "/pages/packageC/survey/index?questionTid=" + eData.id,
- imageUrl: "https://img-blog.csdnimg.cn/c9f9d3e703104fbfaf8ddcb8ce2f0367.png",
- };
- },
- onShareTimeline(res) {
- return {
- title: "调查问卷",
- type: 0,
- summary: "https://img-blog.csdnimg.cn/c9f9d3e703104fbfaf8ddcb8ce2f0367.png",
- };
- },