EnumConst.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. export const COMP_CODE = {
  2. index_ctl: 'index_ctl',
  3. index_swip: 'index_swip',
  4. my: 'my',
  5. };
  6. export const ICON_CFG = {
  7. file_icon: '/profile/upload/2024/08/17/file_icon_20240817121536A002.svg',
  8. login_bg: '/profile/upload/2024/08/17/head-bg_20240817230007A002.png',
  9. };
  10. export const CONTENT_TYPE = {
  11. news: 1,
  12. conference: 6,
  13. theme: 4,
  14. conferenceMaterials: 5,
  15. };
  16. export const MEETING_TYPE = {
  17. 1: {
  18. name: '大会报名',
  19. value: '1',
  20. },
  21. 2: {
  22. name: '会场调研',
  23. value: '2',
  24. },
  25. 3: {
  26. name: '主题研讨',
  27. value: '3',
  28. },
  29. meeting: {
  30. name: '会议报名',
  31. value: '1',
  32. },
  33. theme: {
  34. name: '主题研讨',
  35. value: '3',
  36. },
  37. conference: {
  38. name: '会场调研',
  39. value: '2',
  40. },
  41. };
  42. export const USR_TYPE_LIST = [
  43. {
  44. value: '1',
  45. name: '大会代表',
  46. },
  47. {
  48. value: '2',
  49. name: '随行人员',
  50. },
  51. ];
  52. export const FILE_ICON = {
  53. doc: '/profile/upload/2024/08/20/word_20240820110735A012.svg',
  54. docx: '/profile/upload/2024/08/20/word_20240820110735A012.svg',
  55. xls: '/profile/upload/2024/08/20/excel_20240820110613A006.svg',
  56. xlsx: '/profile/upload/2024/08/20/excel_20240820110613A006.svg',
  57. txt: '/profile/upload/2024/08/20/text_20240820110711A010.svg',
  58. text: '/profile/upload/2024/08/20/text_20240820110711A010.svg',
  59. ppt: '/profile/upload/2024/08/20/ppt_20240820110657A009.svg',
  60. pptx: '/profile/upload/2024/08/20/ppt_20240820110657A009.svg',
  61. pdf: '/profile/upload/2024/08/20/pdf_20240820110643A008.svg',
  62. png: '/profile/upload/2024/08/20/image_20240820110632A007.svg',
  63. mp4: '/profile/upload/2024/08/20/video_20240820110721A011.svg',
  64. defIcon: '/profile/upload/2024/08/17/file_icon_20240817121536A002.svg',
  65. };
  66. export const SYS_YES_NO = {
  67. '0': {
  68. name: '是',
  69. value: 0,
  70. },
  71. '1': {
  72. name: '否',
  73. value: 1,
  74. },
  75. };
  76. export const REVIEW_STATUS = {
  77. '0': {
  78. name: '审核通过',
  79. value: '0',
  80. tag: 'success',
  81. },
  82. '1': {
  83. name: '审核不通过',
  84. value: '1',
  85. tag: 'danger',
  86. },
  87. '2': {
  88. name: '待审核',
  89. value: '2',
  90. tag: 'warning',
  91. },
  92. 'pass': {
  93. name: '审核通过',
  94. value: '0',
  95. tag: 'success',
  96. },
  97. 'noPass': {
  98. name: '审核不通过',
  99. value: '1',
  100. tag: 'danger',
  101. },
  102. 'wait': {
  103. name: '待审核',
  104. value: '2',
  105. tag: 'warning',
  106. },
  107. };
  108. export const TFC_INFO = {
  109. // 铁路1 航空2 公路3
  110. 1: {
  111. name: '车次',
  112. value: 1,
  113. },
  114. 2: {
  115. name: '航班号',
  116. value: 2,
  117. },
  118. 3: {
  119. name: '高速公路出入口',
  120. value: 3,
  121. },
  122. };