From 497539d35a31e27ee84a6894ca3df978ec74df67 Mon Sep 17 00:00:00 2001 From: liuye Date: Mon, 6 Feb 2023 09:42:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=AD=E5=A5=96=E8=AE=B0=E5=BD=95=E6=96=87?= =?UTF-8?q?=E5=AD=97=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue b/src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue index d2bb4a0a..d942a444 100644 --- a/src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue +++ b/src/project/activeAnalysis/AppLuckyDraw/AppLuckyDraw.vue @@ -154,7 +154,7 @@ export default { return { deg: 0, // 初始化角度 duration: 2000, //动画时长 - awardNumber: 0, // 中奖区域 从1开始 + awardNumber: 1, // 中奖区域 从1开始 isStart: false, //防止多次触发动画 animationData: {}, //动画对象 showPhoneMask: false, @@ -280,7 +280,7 @@ export default { if(res.data.length) { var textList = [] res.data.map((item, index) => { - textList[index] = `${this.geTel(res.data[index].phone)}用户获得${res.data[index].prizeName}` + textList[index] = `${res.data[index].name} ${this.geTel(res.data[index].phone)}获得${res.data[index].prizeName}` }) if(textList.length > 2) { var num = Math.floor(textList.length/3)