diff --git a/src/apps/AppAskForm/components/List.vue b/src/apps/AppAskForm/components/List.vue index f7069542..54ab8edc 100644 --- a/src/apps/AppAskForm/components/List.vue +++ b/src/apps/AppAskForm/components/List.vue @@ -163,7 +163,7 @@ export default { } if (data.tapIndex === 0 || data.tapIndex === 1) { if (data.tapIndex === 0) { - this.wxInvoke(['shareAppMessage', { + this.wx.invoke(['shareAppMessage', { title: this.info.title, desc: this.info.tableExplain, link: this.linkUrl, @@ -171,11 +171,9 @@ export default { }, e => { console.log(e) this.isShow = false - }]).then(e => { - console.log(e) - }) + }]) } else { - this.wxInvoke(['shareWechatMessage', { + this.wx.invoke(['shareWechatMessage', { title: this.info.title, desc: this.info.tableExplain, link: this.linkUrl, @@ -183,9 +181,7 @@ export default { }, e => { console.log(e) this.isShow = false - }]).then(e => { - console.log(e) - }) + }]) } } }