From 253a2fb8a4cdf322875f3914dc8101d8b92f2d95 Mon Sep 17 00:00:00 2001 From: luying Date: Fri, 21 May 2021 16:19:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B4=BB=E5=8A=A8=EF=BC=9A=E9=A6=96=E5=85=85?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=B8=80=E4=B8=AA=E7=BB=99=E5=AE=A2=E6=88=B7?= =?UTF-8?q?=E7=AB=AF=E7=9A=84=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/domain/activityField/firstGiftField.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shared/domain/activityField/firstGiftField.ts b/shared/domain/activityField/firstGiftField.ts index d7a33a38b..907322fd5 100644 --- a/shared/domain/activityField/firstGiftField.ts +++ b/shared/domain/activityField/firstGiftField.ts @@ -9,6 +9,7 @@ export class FirstGiftItem { index: number; // 第几天,从1开始 name: string; //名称 reward: string; //奖励 + goldCount: number; // 显示用的可获得元宝 isReceive: boolean = false; //是否领取过奖励 @@ -16,6 +17,7 @@ export class FirstGiftItem { this.name = data.name; this.index = data.index; this.reward = data.reward; + this.goldCount = data.goldCount; } }