活动:新武将抽卡活动

This commit is contained in:
qiaoxin
2021-06-23 20:56:19 +08:00
parent 03c977ec40
commit 58d8aacb4d
12 changed files with 388 additions and 15 deletions

View File

@@ -14,6 +14,7 @@ export class LandItem {
saveMax: number //银行存钱最大数额
takeOutMax: number //银行取钱最大次数
shopActivityId: number //商店对应的商店id
shoppingCountMax: number //逛商店次数
record: any[] = []; //历史操作
stopCount: number //停留次数
@@ -27,6 +28,7 @@ export class LandItem {
this.saveMax = data.saveMax;
this.takeOutMax = data.takeOutMax;
this.shopActivityId = data.shopActivityId;
this.shoppingCountMax = data.shoppingCountMax;
this.record = [];
this.stopCount = 0;
}