From 4a4ac40ecb3d31144ac117a70bc9a832d4034c32 Mon Sep 17 00:00:00 2001 From: liuye Date: Mon, 6 Feb 2023 14:42:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B4=BB=E5=8A=A8=E6=8A=A5=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue b/src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue index e96ed036..965e30a0 100644 --- a/src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue +++ b/src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue @@ -219,9 +219,16 @@ export default { this.$http.post(`/app/appmarketingactivityinfo/bindPhone?phone=${this.phone}`).then((res) => { if (res.code == 0) { this.showPhoneMask = false - this.signUp() this.getDetail() this.$u.toast('绑定成功') + this.$http.post(`/app/appmarketingactivityinfo/signup?activityId=${this.activityId}`).then((res) => { + if (res.code == 0) { + this.$u.toast('活动报名成功!') + this.getDetail() + } + }).catch((err) => { + this.$u.toast(err) + }) } }).catch((err) => { this.$u.toast(err)