M_Notice.ts 807 B

1234567891011121314151617181920
  1. // ID:key, Icon:图片, Name:标题, Content:内容, Index:显示排序, StartTime:开始时间, EndTime:结束时间
  2. export default class M_Notice {
  3. private static data =
  4. {"1":{"ID":1,"Icon":"fish702","Name":"欢迎光临","Content":"各位老板,欢迎您光临本游戏。愿您幸运永存!游戏中,如遇问题可联系我们的客服人员!祝您越玩越开心,收益翻翻翻。","Index":1,"StartTime":"2019.5.16","EndTime":"2019.6.17"}
  5. }// ID:key, Icon:图片, Name:标题, Content:内容, Index:显示排序, StartTime:开始时间, EndTime:结束时间
  6. static getData(key: any): any {
  7. if (key == null || key == undefined)
  8. return null;
  9. return this.data[key];
  10. }
  11. static getAllData(): any {
  12. return this.data;
  13. }
  14. }