export const CONDITION_MAP = { 1: '良好', 2: '中等', 3: '次品', 4: '全新' } export const getConditionText = (type) => { return CONDITION_MAP[type] || '-'; }