EnumConst.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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 USR_TYPE = {
  53. 1: {
  54. name: '大会代表',
  55. value: '1',
  56. },
  57. 2: {
  58. name: '随行人员',
  59. value: '2',
  60. },
  61. };
  62. export const FILE_ICON = {
  63. doc: '/profile/upload/2024/08/20/word_20240820110735A012.svg',
  64. docx: '/profile/upload/2024/08/20/word_20240820110735A012.svg',
  65. xls: '/profile/upload/2024/08/20/excel_20240820110613A006.svg',
  66. xlsx: '/profile/upload/2024/08/20/excel_20240820110613A006.svg',
  67. txt: '/profile/upload/2024/08/20/text_20240820110711A010.svg',
  68. text: '/profile/upload/2024/08/20/text_20240820110711A010.svg',
  69. ppt: '/profile/upload/2024/08/20/ppt_20240820110657A009.svg',
  70. pptx: '/profile/upload/2024/08/20/ppt_20240820110657A009.svg',
  71. pdf: '/profile/upload/2024/08/20/pdf_20240820110643A008.svg',
  72. png: '/profile/upload/2024/08/20/image_20240820110632A007.svg',
  73. mp4: '/profile/upload/2024/08/20/video_20240820110721A011.svg',
  74. defIcon: '/profile/upload/2024/08/17/file_icon_20240817121536A002.svg',
  75. };
  76. export const SYS_YES_NO = {
  77. '0': {
  78. name: '是',
  79. value: 0,
  80. },
  81. '1': {
  82. name: '否',
  83. value: 1,
  84. },
  85. };
  86. export const REVIEW_STATUS = {
  87. '0': {
  88. name: '审核通过',
  89. value: '0',
  90. tag: 'success',
  91. tip: 32,
  92. },
  93. '1': {
  94. name: '审核不通过',
  95. value: '1',
  96. tag: 'error',
  97. tip: 33,
  98. },
  99. '2': {
  100. name: '待审核',
  101. value: '2',
  102. tag: 'warning',
  103. },
  104. 'pass': {
  105. name: '审核通过',
  106. value: '0',
  107. tag: 'success',
  108. },
  109. 'noPass': {
  110. name: '审核不通过',
  111. value: '1',
  112. tag: 'error',
  113. },
  114. 'wait': {
  115. name: '待审核',
  116. value: '2',
  117. tag: 'warning',
  118. },
  119. };
  120. export const TFC_TYPE = {
  121. 1: {
  122. name: '铁路',
  123. value: 1,
  124. },
  125. 2: {
  126. name: '航空',
  127. value: 2,
  128. },
  129. 3: {
  130. name: '公路',
  131. value: 3,
  132. },
  133. };
  134. export const TFC_INFO = {
  135. 1: {
  136. name: '车次',
  137. value: 1,
  138. },
  139. 2: {
  140. name: '航班号',
  141. value: 2,
  142. },
  143. 3: {
  144. name: '高速公路出入口',
  145. value: 3,
  146. },
  147. };