123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- 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 MEETING_TYPE = {
- 1: {
- name: '大会报名',
- value: '1',
- },
- 2: {
- name: '会场调研',
- value: '2',
- },
- 3: {
- name: '主题研讨',
- value: '3',
- },
- meeting: {
- name: '会议报名',
- value: '1',
- },
- theme: {
- name: '主题研讨',
- value: '3',
- },
- conference: {
- name: '会场调研',
- value: '2',
- },
- };
- export const USR_TYPE_LIST = [
- {
- value: '1',
- name: '大会代表',
- },
- {
- value: '2',
- name: '随行人员',
- },
- ];
- export const USR_TYPE = {
- 1: {
- name: '大会代表',
- value: '1',
- },
- 2: {
- name: '随行人员',
- value: '2',
- },
- };
- 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',
- tip: 32,
- },
- '1': {
- name: '审核不通过',
- value: '1',
- tag: 'error',
- tip: 33,
- },
- '2': {
- name: '待审核',
- value: '2',
- tag: 'warning',
- },
- 'pass': {
- name: '审核通过',
- value: '0',
- tag: 'success',
- },
- 'noPass': {
- name: '审核不通过',
- value: '1',
- tag: 'error',
- },
- 'wait': {
- name: '待审核',
- value: '2',
- tag: 'warning',
- },
- };
- export const TFC_TYPE = {
- 1: {
- name: '铁路',
- value: 1,
- },
- 2: {
- name: '航空',
- value: 2,
- },
- 3: {
- name: '公路',
- value: 3,
- },
- };
- export const TFC_INFO = {
- 1: {
- name: '车次',
- value: 1,
- },
- 2: {
- name: '航班号',
- value: 2,
- },
- 3: {
- name: '高速公路出入口',
- value: 3,
- },
- };
|