From 4e3a87359d0b88dbace258506ed16c66c6cf0b1a Mon Sep 17 00:00:00 2001 From: luying Date: Sun, 26 Dec 2021 15:19:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B4=BB=E5=8A=A8=EF=BC=9A=E4=B8=83=E5=A4=A9?= =?UTF-8?q?=E4=B9=90=E6=B7=BB=E5=8A=A0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/domain/activityField/sevenDaysField.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shared/domain/activityField/sevenDaysField.ts b/shared/domain/activityField/sevenDaysField.ts index 6a9bb96b9..80f74206d 100644 --- a/shared/domain/activityField/sevenDaysField.ts +++ b/shared/domain/activityField/sevenDaysField.ts @@ -20,6 +20,7 @@ export class SevenDaysDailyItem { taskParam: string; //任务数据 dic_zyz_taskType.json condition: number; //任务数据条件 dic_zyz_taskType.jsonT reward: string; // 任务奖励,格式:1&3&1(类型&id&数量) 类型定义:1.英雄,2.物品 + skip: string; // 跳转 totalCount: number = 0; //完成任务累计次数 receiveRewardCount: number = 0; //领取奖励次数 @@ -32,6 +33,8 @@ export class SevenDaysDailyItem { this.taskParam = data.taskParam; this.condition = data.condition; this.reward = data.reward; + this.skip = data.skip; + this.totalCount = 0; this.receiveRewardCount = 0; } @@ -190,6 +193,7 @@ export class SevenDaysGrowthItem { point: number; // 任务达成获得的奖章数量,只在当前活动中有用,虚拟 reward: string; // 任务奖励,格式:1&3&1(类型&id&数量) 类型定义:1.英雄,2.物品 taskParamArray: number[]; + skip: string; // 跳转 totalCount: number = 0; //完成任务累计次数 receiveRewardCount: number = 0; //领取奖励次数 @@ -203,6 +207,7 @@ export class SevenDaysGrowthItem { this.condition = data.condition; this.point = data.point; this.reward = data.reward; + this.skip = data.skip; this.totalCount = 0; this.receiveRewardCount = 0; this.taskParamArray = splitString(data.taskParam, '&')