feat(WEB): 견적관리 가이드레일 혼합형 옵션 추가

- GUIDE_RAIL_TYPES에 혼합형(mixed) 선택지 추가
- DevFill mock 데이터에 mixed 포함
This commit is contained in:
2026-02-19 21:21:16 +09:00
parent f695977cbc
commit 43486d9cc3
2 changed files with 2 additions and 1 deletions

View File

@@ -71,6 +71,7 @@ const FLOOR_OPTIONS = [
const GUIDE_RAIL_TYPES = [
{ value: "wall", label: "벽면형" },
{ value: "floor", label: "측면형" },
{ value: "mixed", label: "혼합형" },
];
// 모터 전원

View File

@@ -228,7 +228,7 @@ export function QuoteRegistration({
const createRandomLocation = (index: number): LocationItem => {
const floors = ["B2", "B1", "1F", "2F", "3F", "4F", "5F", "R"];
const codePrefix = ["SD", "FSS", "FD", "SS", "DS"];
const guideRailTypes = ["wall", "floor"];
const guideRailTypes = ["wall", "floor", "mixed"];
const motorPowers = ["single", "three"];
const controllers = ["basic", "smart", "premium"];