index.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. export const UserRole = {
  2. admin: '管理员',
  3. team: '队长',
  4. promoter: '推广员',
  5. user: '用户',
  6. }
  7. export const ConfigType = {
  8. string: '字符串',
  9. date: '日期',
  10. number: '数字',
  11. boolean: '布尔值',
  12. object: '对象',
  13. file: '文件',
  14. time_range: '时间范围',
  15. range: '范围'
  16. }
  17. export const ChainType = {
  18. btc: 'btc',
  19. eth: 'eth',
  20. bsc: 'bsc',
  21. tron: 'tron',
  22. sol: 'sol'
  23. }
  24. export const PlatformType = {
  25. Android: 'Android',
  26. iOS: 'iOS',
  27. PC: 'PC'
  28. }
  29. export const FinanceStatus = {
  30. withdrawn: '已提现',
  31. rejected: '申请驳回',
  32. processing: '处理中'
  33. }
  34. export const IncomeType = {
  35. tip: '打赏收入',
  36. commission: '返佣收入'
  37. }
  38. export const OrderType = {
  39. single_tip: '单片打赏',
  40. hourly: '包时会员',
  41. daily: '包日会员',
  42. weekly: '包周会员',
  43. monthly: '包月会员',
  44. quarterly: '包季会员',
  45. yearly: '包年会员',
  46. lifetime: '终身会员'
  47. }
  48. export const LinkType = {
  49. general: '通用链接',
  50. super: '超级链接',
  51. browser: '浏览器链接'
  52. }