global.js 295 B

1234567891011121314151617181920212223
  1. /**
  2. * 全局通用字段定义
  3. */
  4. /**
  5. * 玩法类型
  6. * 普通任务:common=1;
  7. * 抽奖:lottery=2
  8. */
  9. export const PlayType = {
  10. common: 1,
  11. lottery: 2,
  12. };
  13. /**
  14. * 奖品类型
  15. * 货币:money=1;
  16. * 自定义奖品:custom=2
  17. */
  18. export const RewardType = {
  19. money: 1,
  20. custom: 2,
  21. };