From 349688092cf3f2f635ae285f4291fb4cad5d6959 Mon Sep 17 00:00:00 2001 From: "junghoon86.park" Date: Wed, 17 Dec 2025 16:36:03 +0900 Subject: [PATCH] =?UTF-8?q?[=ED=85=8C=EB=A7=88=EB=B6=80=EB=B6=84=EC=9D=98?= =?UTF-8?q?=20=EC=97=90=EB=84=88=EC=A7=80=20=EB=9D=BC=EB=B2=A8=20=EB=85=B8?= =?UTF-8?q?=EC=B6=9C]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 에너지 라벨 목업데이터 제거 및 받아와서 데이터 노출되도록 처리 - 에너지 라벨 관련 처리. max-height: 800px로 제한. --- .../src/views/DetailPanel/ThemeProduct/ThemeContents.jsx | 1 + .../src/views/DetailPanel/ThemeProduct/ThemeItemCard.jsx | 7 ++++--- .../DetailPanel/ThemeProduct/ThemeItemCard.module.less | 4 ++++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeContents.jsx b/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeContents.jsx index 3692627b..cdfb2730 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeContents.jsx +++ b/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeContents.jsx @@ -248,6 +248,7 @@ export default function ThemeContents({ handleItemFocus?.(index); }} onMouseEnter={() => Spotlight.focus(spotlightItemId)} + euEnrgLblInfos={euEnrgLblInfos} /> ); }, diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.jsx b/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.jsx index 615646c6..60156bfa 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.jsx +++ b/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.jsx @@ -51,6 +51,7 @@ export default function ThemeItemCard({ spotlightId, dataSpotlightDefault, onFocused, + euEnrgLblInfos }) { const dispatch = useDispatch(); const [isFocused, setIsFocused] = useState(false); @@ -211,9 +212,9 @@ export default function ThemeItemCard({ ))} )} */} - {/* {mockEnergyLabel && mockEnergyLabel.length > 0 && ( + {euEnrgLblInfos && euEnrgLblInfos.length > 0 && (
- {mockEnergyLabel.map((label, labelIndex) => ( + {euEnrgLblInfos.map((label, labelIndex) => ( ))}
- )} */} + )} {(() => { diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.module.less b/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.module.less index 55d5d9a1..4c39484c 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.module.less +++ b/com.twin.app.shoptime/src/views/DetailPanel/ThemeProduct/ThemeItemCard.module.less @@ -220,3 +220,7 @@ } } } + +.energyImage { + max-height:800px; +} \ No newline at end of file