index.js 1003 B

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