M_ActivitySummerPlanGiftRuleCFG.ts 763 B

12345678910111213141516171819202122232425262728
  1. // ID:天数, GiftsVaild:开放礼包ID, Name:页签标题
  2. export default class M_ActivitySummerPlanGiftRuleCFG {
  3. private static data =
  4. {"1":{"ID":1,"GiftsVaild":[401,402],"Name":"夏日钻石豪礼"}
  5. ,"2":{"ID":2,"GiftsVaild":[403,404],"Name":"夏日金币礼盒"}
  6. ,"3":{"ID":3,"GiftsVaild":[405],"Name":"海王驾到"}
  7. ,"4":{"ID":4,"GiftsVaild":[406,407],"Name":"夏日金币礼盒"}
  8. ,"5":{"ID":5,"GiftsVaild":[408,409],"Name":"至臻回馈"}
  9. }// ID:天数, GiftsVaild:开放礼包ID, Name:页签标题
  10. static getData(key: any): any {
  11. if (key == null || key == undefined)
  12. return null;
  13. return this.data[key];
  14. }
  15. static getAllData(): any {
  16. return this.data;
  17. }
  18. }