[SHOPTIME-2835] [SHOPTIME-3808] [결제완료화면] Final price 확정 전 문구 노출 필요
This commit is contained in:
@@ -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>
|
||||
)}
|
||||
|
||||
@@ -92,6 +92,13 @@
|
||||
width: 600px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.noticeBox {
|
||||
display: block;
|
||||
margin-top: 15px;
|
||||
font-size: 24px;
|
||||
color: @COLOR_GRAY03;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user