EnumConst.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 FILE_ICON = {
  17. doc: '/profile/upload/2024/08/20/word_20240820110735A012.svg',
  18. docx: '/profile/upload/2024/08/20/word_20240820110735A012.svg',
  19. xls: '/profile/upload/2024/08/20/excel_20240820110613A006.svg',
  20. xlsx: '/profile/upload/2024/08/20/excel_20240820110613A006.svg',
  21. txt: '/profile/upload/2024/08/20/text_20240820110711A010.svg',
  22. text: '/profile/upload/2024/08/20/text_20240820110711A010.svg',
  23. ppt: '/profile/upload/2024/08/20/ppt_20240820110657A009.svg',
  24. pptx: '/profile/upload/2024/08/20/ppt_20240820110657A009.svg',
  25. pdf: '/profile/upload/2024/08/20/pdf_20240820110643A008.svg',
  26. png: '/profile/upload/2024/08/20/image_20240820110632A007.svg',
  27. mp4: '/profile/upload/2024/08/20/video_20240820110721A011.svg',
  28. defIcon: '/profile/upload/2024/08/17/file_icon_20240817121536A002.svg'
  29. };
  30. export const SYS_YES_NO = {
  31. '0': {
  32. name: '是',
  33. value: 0,
  34. },
  35. '1': {
  36. name: '否',
  37. value: 1,
  38. },
  39. };
  40. export const REVIEW_STATUS = {
  41. '0': {
  42. name: '审核通过',
  43. value: 0,
  44. tag: 'success',
  45. },
  46. '1': {
  47. name: '审核不通过',
  48. value: 1,
  49. tag: 'danger',
  50. },
  51. '2': {
  52. name: '待审核',
  53. value: 2,
  54. tag: 'warning',
  55. },
  56. 'pass': {
  57. name: '审核通过',
  58. value: 0,
  59. tag: 'success',
  60. },
  61. 'noPass': {
  62. name: '审核不通过',
  63. value: 1,
  64. tag: 'danger',
  65. },
  66. 'wait': {
  67. name: '待审核',
  68. value: 2,
  69. tag: 'warning',
  70. },
  71. };