EnumConst.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. theme_icon: '/profile/upload/2024/10/12/theme_icon_20241012185848A002.svg',
  10. theme_bg: '/profile/upload/2024/10/12/index_bg_20241012192232A004.png',
  11. };
  12. export const CONTENT_TYPE = {
  13. news: 1,
  14. conference: 6,
  15. theme: 4,
  16. conferenceMaterials: 5,
  17. };
  18. export const MEETING_TYPE = {
  19. 1: {
  20. name: '大会报名',
  21. value: '1',
  22. },
  23. 2: {
  24. name: '会场调研',
  25. value: '2',
  26. },
  27. 3: {
  28. name: '主题研讨',
  29. value: '3',
  30. },
  31. meeting: {
  32. name: '会议报名',
  33. value: '1',
  34. },
  35. theme: {
  36. name: '主题研讨',
  37. value: '3',
  38. },
  39. conference: {
  40. name: '会场调研',
  41. value: '2',
  42. },
  43. };
  44. export const USR_TYPE_LIST = [
  45. {
  46. value: '1',
  47. name: '大会代表',
  48. },
  49. {
  50. value: '2',
  51. name: '特邀代表',
  52. },
  53. ];
  54. export const USR_TYPE = {
  55. 1: {
  56. name: '大会代表',
  57. value: '1',
  58. },
  59. 2: {
  60. name: '特邀代表',
  61. value: '2',
  62. },
  63. };
  64. export const FILE_ICON = {
  65. doc: '/profile/upload/2024/08/20/word_20240820110735A012.svg',
  66. docx: '/profile/upload/2024/08/20/word_20240820110735A012.svg',
  67. xls: '/profile/upload/2024/08/20/excel_20240820110613A006.svg',
  68. xlsx: '/profile/upload/2024/08/20/excel_20240820110613A006.svg',
  69. txt: '/profile/upload/2024/08/20/text_20240820110711A010.svg',
  70. text: '/profile/upload/2024/08/20/text_20240820110711A010.svg',
  71. ppt: '/profile/upload/2024/08/20/ppt_20240820110657A009.svg',
  72. pptx: '/profile/upload/2024/08/20/ppt_20240820110657A009.svg',
  73. pdf: '/profile/upload/2024/08/20/pdf_20240820110643A008.svg',
  74. png: '/profile/upload/2024/08/20/image_20240820110632A007.svg',
  75. mp4: '/profile/upload/2024/08/20/video_20240820110721A011.svg',
  76. defIcon: '/profile/upload/2024/08/17/file_icon_20240817121536A002.svg',
  77. };
  78. export const SYS_YES_NO = {
  79. '0': {
  80. name: '是',
  81. value: 0,
  82. },
  83. '1': {
  84. name: '否',
  85. value: 1,
  86. },
  87. };
  88. export const REVIEW_STATUS = {
  89. '0': {
  90. name: '审核通过',
  91. value: '0',
  92. tag: 'success',
  93. tip: 32,
  94. },
  95. '1': {
  96. name: '审核不通过',
  97. value: '1',
  98. tag: 'error',
  99. tip: 33,
  100. },
  101. '2': {
  102. name: '待审核',
  103. value: '2',
  104. tag: 'warning',
  105. },
  106. 'pass': {
  107. name: '审核通过',
  108. value: '0',
  109. tag: 'success',
  110. },
  111. 'noPass': {
  112. name: '审核不通过',
  113. value: '1',
  114. tag: 'error',
  115. },
  116. 'wait': {
  117. name: '待审核',
  118. value: '2',
  119. tag: 'warning',
  120. },
  121. };
  122. export const TFC_TYPE = {
  123. 1: {
  124. name: '铁路',
  125. value: 1,
  126. },
  127. 2: {
  128. name: '航空',
  129. value: 2,
  130. },
  131. 3: {
  132. name: '公路',
  133. value: 3,
  134. },
  135. };
  136. export const TFC_INFO = {
  137. 1: {
  138. name: '车次',
  139. value: 1,
  140. },
  141. 2: {
  142. name: '航班号',
  143. value: 2,
  144. },
  145. 3: {
  146. name: '高速公路出入口',
  147. value: 3,
  148. },
  149. };
  150. export const FORM_MOD = {
  151. add: 'add',
  152. modify: 'mod',
  153. };