12345678910111213141516171819202122232425262728293031323334353637383940 |
- // ID:编号, VipLevel:VIP等级, PurchaseCount:购买次数, bagId:礼包id
- export default class M_ActivityVipBagCFG {
- private static data =
- {"1":{"ID":1,"VipLevel":0,"PurchaseCount":1,"bagId":[250,251,252]}
- ,"2":{"ID":2,"VipLevel":1,"PurchaseCount":2,"bagId":[250,251,252]}
- ,"3":{"ID":3,"VipLevel":2,"PurchaseCount":3,"bagId":[250,251,252]}
- ,"4":{"ID":4,"VipLevel":3,"PurchaseCount":4,"bagId":[250,251,252]}
- ,"5":{"ID":5,"VipLevel":4,"PurchaseCount":5,"bagId":[250,251,252]}
- ,"6":{"ID":6,"VipLevel":5,"PurchaseCount":6,"bagId":[250,251,252]}
- ,"7":{"ID":7,"VipLevel":6,"PurchaseCount":7,"bagId":[250,251,252]}
- ,"8":{"ID":8,"VipLevel":7,"PurchaseCount":8,"bagId":[250,251,252]}
- ,"9":{"ID":9,"VipLevel":8,"PurchaseCount":9,"bagId":[250,251,252]}
- ,"10":{"ID":10,"VipLevel":9,"PurchaseCount":10,"bagId":[250,251,252]}
- ,"11":{"ID":11,"VipLevel":10,"PurchaseCount":11,"bagId":[250,251,252]}
- }// ID:编号, VipLevel:VIP等级, PurchaseCount:购买次数, bagId:礼包id
- static getData(key: any): any {
- if (key == null || key == undefined)
- return null;
- return this.data[key];
- }
- static getAllData(): any {
- return this.data;
- }
- }
|