梦魇基金:修改触发条件

This commit is contained in:
luying
2022-08-25 20:00:11 +08:00
parent 7cdbeaa636
commit a4cfcf180c
2 changed files with 6 additions and 3 deletions

View File

@@ -89,7 +89,7 @@ export class GrowthFundData extends ActivityBase {
}
case ACTIVITY_TYPE.GROWTH_FUND_MAIN_ELITE:
case ACTIVITY_TYPE.GROWTH_FUND_MAIN_ELITE_VIP: {
if (!this.isReceive(page.pageIndex, item.cellIndex) && item.taskParamArray[1] <= condition) {
if (!this.isReceive(page.pageIndex, item.cellIndex) && item.taskParamArray[1] == condition) {
item.isComplete = true;
items.push(Object.assign(item, { pageIndex: page.pageIndex, activityId: this.activityId }))
}