From bae458192c984a1e7b7c15175ffaef4cf8003368 Mon Sep 17 00:00:00 2001 From: liuye Date: Fri, 3 Feb 2023 15:24:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=BD=E5=A5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue b/src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue index bb5ae64a..d424551d 100644 --- a/src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue +++ b/src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue @@ -284,18 +284,14 @@ export default { return tel.replace(reg, "$1****$2"); }, share() { - console.log(789) - this.agentSign().then(() => { + this.agentSign().then((res) => { + console.log(999, res) this.injectJWeixin(['shareAppMessage', 'shareWechatMessage']).then(() => { this.wxInvoke(['shareAppMessage', { title: '幸运抽奖', desc: '新年伊始,企业微信团队为创建安全和谐的网络办公环境,诚邀大家使用企业微信参与打卡活动!', link: `./AppLuckyDraw/AppLuckyDraw?activityId=${this.activityId}&friendId=${this.user.id}`, - }]).catch((err) => { - console.log(123, err) - }) - }).catch((err) => { - console.log(456, err) + }]) }) }) },