M_RobNoticeCFG.ts 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // ID:Key, ShowPos:显示位置
  2. export default class M_RobNoticeCFG {
  3. private static data =
  4. {"RobotNotice01":{"ID":"RobotNotice01","ShowPos":0}
  5. ,"RobotNotice02":{"ID":"RobotNotice02","ShowPos":0}
  6. ,"RobotNotice03":{"ID":"RobotNotice03","ShowPos":0}
  7. ,"RobotNotice04":{"ID":"RobotNotice04","ShowPos":0}
  8. ,"RobotNotice05":{"ID":"RobotNotice05","ShowPos":0}
  9. ,"RobotNotice06":{"ID":"RobotNotice06","ShowPos":0}
  10. ,"RobotNotice07":{"ID":"RobotNotice07","ShowPos":0}
  11. ,"RobotNotice08":{"ID":"RobotNotice08","ShowPos":0}
  12. ,"RobotNotice09":{"ID":"RobotNotice09","ShowPos":0}
  13. ,"RobotNotice10":{"ID":"RobotNotice10","ShowPos":0}
  14. ,"RobotNotice11":{"ID":"RobotNotice11","ShowPos":0}
  15. ,"RobotNotice12":{"ID":"RobotNotice12","ShowPos":0}
  16. ,"RobotNotice13":{"ID":"RobotNotice13","ShowPos":1}
  17. }// ID:Key, ShowPos:显示位置
  18. static getData(key: any): any {
  19. if (key == null || key == undefined)
  20. return null;
  21. return this.data[key];
  22. }
  23. static getAllData(): any {
  24. return this.data;
  25. }
  26. }