[260211] 상품 컨디션 정의

- 가격 누락 복구
This commit is contained in:
2026-02-11 00:27:42 +09:00
parent 526d310ac9
commit b268a97e0f
45 changed files with 451 additions and 261 deletions

View File

@@ -72,3 +72,15 @@ export const SEARCH_CONFIG = {
USE_DESCRIPTION: true, // 요약 설명 검색
USE_FULL_DESCRIPTION: false, // 상세 설명 배열 검색
};
/** 상품 컨디션(specs.condition) 정의 */
export const PRODUCT_CONDITIONS = {
BRAND_NEW: { label: 'Brand New (미개봉)', color: 'text-emerald-600', level: 'S' },
LIKE_NEW: { label: 'Like New (단순개봉)', color: 'text-blue-600', level: 'A+' },
EXCELLENT: { label: 'Excellent (최상급)', color: 'text-sky-600', level: 'A' },
GOOD: { label: 'Good (보통/사용감)', color: 'text-slate-600', level: 'B' },
INCOMPLETE: { label: 'Incomplete (구성품 누락)', color: 'text-amber-600', level: 'C' },
DAMAGED: { label: 'Damaged (하자/파손)', color: 'text-orange-600', level: 'D' },
JUNK: { label: 'Junk (동작불가/부품용)', color: 'text-red-600', level: 'F' },
OTHER: { label: '기타 (상세설명 참고)', color: 'text-indigo-600', level: '-' }
};