[SHOPTIME-2835] [SHOPTIME-3808] [결제완료화면] Final price 확정 전 문구 노출 필요

This commit is contained in:
hyunwoo93.cha
2024-11-07 12:58:35 +09:00
parent 45b43998bd
commit c9702a6b35
2 changed files with 12 additions and 3 deletions

View File

@@ -48,10 +48,12 @@ export default function ConfirmPanel({ spotlightId }) {
realTotAmt,
totDlvrAmt,
} = panelInfo?.orderInfo || {};
const auctProdYn = panelInfo?.auctProdYn || {};
const auctFinalPriceChgDt = panelInfo?.auctFinalPriceChgDt || {};
const auctProdYn = panelInfo?.auctProdYn;
const auctFinalPriceChgDt = panelInfo?.auctFinalPriceChgDt;
const logInfo = panelInfo?.logInfo || {};
console.log("chw", auctProdYn, auctFinalPriceChgDt);
useEffect(() => {
dispatch(sendLogGNB(Config.LOG_MENU.CHECKOUT_ORDER_COMPLETE));
@@ -144,7 +146,7 @@ export default function ConfirmPanel({ spotlightId }) {
{realTotAmt} ({cardKnd})
</span>
{auctProdYn && auctProdYn === "Y" && !auctFinalPriceChgDt && (
<span>
<span className={css.noticeBox}>
{$L("Purchased products will be paid at the final price.")}
</span>
)}

View File

@@ -92,6 +92,13 @@
width: 600px;
display: inline-block;
}
.noticeBox {
display: block;
margin-top: 15px;
font-size: 24px;
color: @COLOR_GRAY03;
}
}
}