From 50af9bc0c5f17a71713756e31702e4e522a2fa24 Mon Sep 17 00:00:00 2001 From: "junghoon86.park" Date: Wed, 5 Nov 2025 16:40:36 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[=EC=83=81=ED=92=88=20=EC=84=A4=EB=AA=85=20?= =?UTF-8?q?=EB=B6=80=EB=B6=84]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 상단과 스타일 맞지 않는부분 수정 --- .../ProductDescription/ProductDescription.module.less | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ProductContentSection/ProductDescription/ProductDescription.module.less b/com.twin.app.shoptime/src/views/DetailPanel/ProductContentSection/ProductDescription/ProductDescription.module.less index 9075b77c..455abce8 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/ProductContentSection/ProductDescription/ProductDescription.module.less +++ b/com.twin.app.shoptime/src/views/DetailPanel/ProductContentSection/ProductDescription/ProductDescription.module.less @@ -4,12 +4,11 @@ .descriptionContainer { position: relative; top: -1px; - width: calc(100% - 5px); - margin-left: 5px; - max-width: none; + width: calc(100% - 5px); height: 100%; box-sizing: border-box; color: rgba(234, 234, 234, 1); + max-width:1114px; } .titleWrapper { From 2caed8b95d60180d0c0a12d7a55001bcf4e66ea7 Mon Sep 17 00:00:00 2001 From: "junghoon86.park" Date: Wed, 5 Nov 2025 18:16:01 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[=EC=9E=A5=EB=B0=94=EA=B5=AC=EB=8B=88=20?= =?UTF-8?q?=EA=B8=88=EC=95=A1=20=EB=85=B8=EC=B6=9C=EB=B6=80=EB=B6=84=20?= =?UTF-8?q?=EC=88=98=EC=A0=95]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 배송비부분에 갯수가 빠진부분 수정 --- com.twin.app.shoptime/src/views/CartPanel/CartProduct.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.twin.app.shoptime/src/views/CartPanel/CartProduct.jsx b/com.twin.app.shoptime/src/views/CartPanel/CartProduct.jsx index d5eef7e7..d1c15160 100644 --- a/com.twin.app.shoptime/src/views/CartPanel/CartProduct.jsx +++ b/com.twin.app.shoptime/src/views/CartPanel/CartProduct.jsx @@ -137,7 +137,7 @@ const CartProduct = ({ cartInfo }) => { // ); const optionTotal = 0; const shippingTotal = items.reduce((sum, item) => - sum + parseFloat(item.shippingCharge || 0), 0 + sum + parseFloat((item.shippingCharge) * item.prodQty || 0), 0 ); return {