/** * 公共常量 */ const ANNIVERSARY_TYPES = { BIRTHDAY: 'birthday', LUNAR_BIRTHDAY: 'lunar_birthday', WEDDING: 'wedding', ENGAGEMENT: 'engagement', OTHER: 'other' } const TYPE_NAMES = { birthday: '生日', // lunar_birthday 已合并到 birthday(公历/农历由 isLunar 决定),保留映射用于兼容老数据回显 lunar_birthday: '生日', wedding: '结婚纪念日', engagement: '订婚纪念日', other: '其他纪念日' } const TYPE_ICONS = { birthday: '🎂', lunar_birthday: '🎂', wedding: '💍', engagement: '💕', other: '📅' } const IMPORTANCE_TEXTS = { high: '非常重要', medium: '重要', low: '一般' } const IMPORTANCE_COLORS = { high: '#ff5722', medium: '#ff9800', low: '#07c160' } module.exports = { ANNIVERSARY_TYPES, TYPE_NAMES, TYPE_ICONS, IMPORTANCE_TEXTS, IMPORTANCE_COLORS }