12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- export const COMP_CODE = {
- index_ctl: 'index_ctl',
- index_swip: 'index_swip',
- my: 'my',
- };
- export const ICON_CFG = {
- file_icon: '/profile/upload/2024/08/17/file_icon_20240817121536A002.svg',
- login_bg: '/profile/upload/2024/08/17/head-bg_20240817230007A002.png',
- };
- export const CONTENT_TYPE = {
- news: 1,
- conference: 6,
- theme: 4,
- conferenceMaterials: 5
- };
- export const FILE_ICON = {
- doc: '/profile/upload/2024/08/20/word_20240820110735A012.svg',
- docx: '/profile/upload/2024/08/20/word_20240820110735A012.svg',
- xls: '/profile/upload/2024/08/20/excel_20240820110613A006.svg',
- xlsx: '/profile/upload/2024/08/20/excel_20240820110613A006.svg',
- txt: '/profile/upload/2024/08/20/text_20240820110711A010.svg',
- text: '/profile/upload/2024/08/20/text_20240820110711A010.svg',
- ppt: '/profile/upload/2024/08/20/ppt_20240820110657A009.svg',
- pptx: '/profile/upload/2024/08/20/ppt_20240820110657A009.svg',
- pdf: '/profile/upload/2024/08/20/pdf_20240820110643A008.svg',
- png: '/profile/upload/2024/08/20/image_20240820110632A007.svg',
- mp4: '/profile/upload/2024/08/20/video_20240820110721A011.svg',
- defIcon: '/profile/upload/2024/08/17/file_icon_20240817121536A002.svg'
- };
- export const SYS_YES_NO = {
- '0': {
- name: '是',
- value: 0,
- },
- '1': {
- name: '否',
- value: 1,
- },
- };
- export const REVIEW_STATUS = {
- '0': {
- name: '审核通过',
- value: 0,
- tag: 'success',
- },
- '1': {
- name: '审核不通过',
- value: 1,
- tag: 'danger',
- },
- '2': {
- name: '待审核',
- value: 2,
- tag: 'warning',
- },
- 'pass': {
- name: '审核通过',
- value: 0,
- tag: 'success',
- },
- 'noPass': {
- name: '审核不通过',
- value: 1,
- tag: 'danger',
- },
- 'wait': {
- name: '待审核',
- value: 2,
- tag: 'warning',
- },
- };
|