From 43486d9cc34daeb2f0ad94e0ee2f15a99008ef41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Thu, 19 Feb 2026 21:21:16 +0900 Subject: [PATCH] =?UTF-8?q?feat(WEB):=20=EA=B2=AC=EC=A0=81=EA=B4=80?= =?UTF-8?q?=EB=A6=AC=20=EA=B0=80=EC=9D=B4=EB=93=9C=EB=A0=88=EC=9D=BC=20?= =?UTF-8?q?=ED=98=BC=ED=95=A9=ED=98=95=20=EC=98=B5=EC=85=98=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - GUIDE_RAIL_TYPES에 혼합형(mixed) 선택지 추가 - DevFill mock 데이터에 mixed 포함 --- src/components/quotes/LocationDetailPanel.tsx | 1 + src/components/quotes/QuoteRegistration.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/quotes/LocationDetailPanel.tsx b/src/components/quotes/LocationDetailPanel.tsx index d3362eaa..95423246 100644 --- a/src/components/quotes/LocationDetailPanel.tsx +++ b/src/components/quotes/LocationDetailPanel.tsx @@ -71,6 +71,7 @@ const FLOOR_OPTIONS = [ const GUIDE_RAIL_TYPES = [ { value: "wall", label: "벽면형" }, { value: "floor", label: "측면형" }, + { value: "mixed", label: "혼합형" }, ]; // 모터 전원 diff --git a/src/components/quotes/QuoteRegistration.tsx b/src/components/quotes/QuoteRegistration.tsx index 701f3d53..627fae81 100644 --- a/src/components/quotes/QuoteRegistration.tsx +++ b/src/components/quotes/QuoteRegistration.tsx @@ -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"];