diff --git a/src/apps/AppAskForm/components/List.vue b/src/apps/AppAskForm/components/List.vue index c9a2340b..f7069542 100644 --- a/src/apps/AppAskForm/components/List.vue +++ b/src/apps/AppAskForm/components/List.vue @@ -168,18 +168,24 @@ export default { desc: this.info.tableExplain, link: this.linkUrl, imgUrl: this.info.headPicture - }, () => { + }, e => { + console.log(e) this.isShow = false - }]) + }]).then(e => { + console.log(e) + }) } else { this.wxInvoke(['shareWechatMessage', { title: this.info.title, desc: this.info.tableExplain, link: this.linkUrl, imgUrl: this.info.headPicture - }, () => { + }, e => { + console.log(e) this.isShow = false - }]) + }]).then(e => { + console.log(e) + }) } } }