活动:新手活动使用通用时间

This commit is contained in:
luying
2022-01-20 20:35:24 +08:00
parent 3d11de205f
commit e791077a45
3 changed files with 4 additions and 7 deletions

View File

@@ -140,6 +140,7 @@ export class TreasureHuntTaskItem {
condition: number; //任务条件数据
reward: string; //奖励
fragment: number; //碎片
skip: string;
totalCount: number = 0; //任务统计
isReceive: boolean = false; //是否领取奖励
@@ -152,6 +153,7 @@ export class TreasureHuntTaskItem {
this.condition = data.condition;
this.reward = data.reward;
this.fragment = data.fragment;
this.skip = data.skip;
this.totalCount = 0;
this.isReceive = false;
}