diff --git a/src/apps/AppAskForm/components/List.vue b/src/apps/AppAskForm/components/List.vue index c9a2340b..a4eeace1 100644 --- a/src/apps/AppAskForm/components/List.vue +++ b/src/apps/AppAskForm/components/List.vue @@ -163,23 +163,27 @@ export default { } if (data.tapIndex === 0 || data.tapIndex === 1) { if (data.tapIndex === 0) { - this.wxInvoke(['shareAppMessage', { + wx.invoke('shareAppMessage', { title: this.info.title, desc: this.info.tableExplain, link: this.linkUrl, - imgUrl: this.info.headPicture - }, () => { + imgUrl: this.info.headPicture, + enableIdTrans: 0 + }, e => { + console.log(e) this.isShow = false - }]) + }) } else { - this.wxInvoke(['shareWechatMessage', { + wx.invoke('shareWechatMessage', { title: this.info.title, desc: this.info.tableExplain, link: this.linkUrl, - imgUrl: this.info.headPicture - }, () => { + imgUrl: this.info.headPicture, + enableIdTrans: 0 + }, e => { + console.log(e) this.isShow = false - }]) + }) } } }