hhz_restructure/src/utils/dictionary.js

53 lines
1.8 KiB
JavaScript
Raw Normal View History

2022-11-15 11:35:54 +08:00
export const QUESTION_STATUS = [
{ label: '已确认', value: 1 },
{ label: '已忽略', value: 2 },
{ label: '待确认', value: 3 }
]
export const USER_STATUS = [
{ label: '正常', value: 1 },
{ label: '禁用', value: 2 }
]
export const MENU_TYPE = [
{ label: '菜单', value: 0 },
{ label: '按钮', value: 1 }
]
export const MENU_OPEN = [
{ label: '内部', value: '1' },
{ label: '外部', value: '2' }
]
export const MENU_VISIBLE = [
{ label: '可见', value: 0 },
{ label: '不可见', value: 1 }
]
export const MENU_STATUS = [
{ label: '在用', value: 1 },
{ label: '停用', value: 2 }
]
2022-11-21 09:32:31 +08:00
export const ADVERTISING_TYPE = [
{ label: '图片', value: 1, color: { color: '#f6ffed', textColor: '#389e0d', borderColor: '#b7eb8f' }},
{ label: '文字', value: 2, color: { color: '#e6f7ff', textColor: '#096dd9', borderColor: '#91d5ff' }},
{ label: '视频', value: 2, color: { color: '#fff1f0', textColor: '#cf1322', borderColor: '#ffa39e' }},
{ label: '推荐', value: 2, color: { color: '#fff7e6', textColor: '#d46b08', borderColor: '#ffd591' }}
]
export const ADVERTISING_PLATFORM = [
{ label: '微信小程序', value: 1, color: { color: '#e6f7ff', textColor: '#096dd9', borderColor: '#91d5ff' }},
{ label: '其他', value: 2, color: { color: '#f6ffed', textColor: '#389e0d', borderColor: '#b7eb8f' }}
]
export const ADVERTISING_STATUS = [
{ label: '正常', value: 1, color: { color: '#e6f7ff', textColor: '#096dd9', borderColor: '#91d5ff' }},
{ label: '停用', value: 2, color: { color: '#fff1f0', textColor: '#cf1322', borderColor: '#ffa39e' }}
]
2022-11-21 17:22:46 +08:00
export const NOTICE_SOURCE = [
{ label: '内部通知', value: 1, color: { color: '#f6ffed', textColor: '#389e0d', borderColor: '#b7eb8f' }},
{ label: '外部新闻', value: 2, color: { color: '#fff7e6', textColor: '#d46b08', borderColor: '#ffd591' }}
]