[지라 이슈 없음] ConfirmPanel 통화 기호, 통화 기호 위치 추가
This commit is contained in:
@@ -210,6 +210,8 @@ export default function PinCodeInput({
|
||||
orderInfo: response.data.data,
|
||||
auctProdYn: auctProdYn,
|
||||
auctFinalPriceChgDt: auctFinalPriceChgDt,
|
||||
currSign: productList.currSign,
|
||||
currSignLoc: productList.currSignLoc,
|
||||
logInfo: logInfo,
|
||||
},
|
||||
})
|
||||
|
||||
@@ -9,7 +9,7 @@ import CustomImage from "../../components/CustomImage/CustomImage";
|
||||
import TButton from "../../components/TButton/TButton";
|
||||
import TPanel from "../../components/TPanel/TPanel";
|
||||
import * as Config from "../../utils/Config";
|
||||
import { $L } from "../../utils/helperMethods";
|
||||
import { $L, formatCurrencyValue } from "../../utils/helperMethods";
|
||||
import { myPageComponents } from "../MyPagePanel/MyPagePanel";
|
||||
import css from "./ConfirmPanel.module.less";
|
||||
|
||||
@@ -49,6 +49,8 @@ export default function ConfirmPanel({ spotlightId }) {
|
||||
totDlvrAmt,
|
||||
} = panelInfo?.orderInfo || {};
|
||||
const auctProdYn = panelInfo?.auctProdYn;
|
||||
const currSign = panelInfo?.currSign;
|
||||
const currSignLoc = panelInfo?.currSignLoc;
|
||||
const auctFinalPriceChgDt = panelInfo?.auctFinalPriceChgDt;
|
||||
const logInfo = panelInfo?.logInfo || {};
|
||||
|
||||
@@ -141,7 +143,8 @@ export default function ConfirmPanel({ spotlightId }) {
|
||||
<div className={css.bottomContents}>
|
||||
<p className={css.bottomContentsTitle}>{$L("ESTIMATED TOTAL")}</p>
|
||||
<span className={css.bottomContentsDesc}>
|
||||
{realTotAmt} ({cardKnd})
|
||||
{formatCurrencyValue(realTotAmt, currSign, currSignLoc)} (
|
||||
{cardKnd})
|
||||
</span>
|
||||
{auctProdYn && auctProdYn === "Y" && !auctFinalPriceChgDt && (
|
||||
<span className={css.noticeBox}>
|
||||
|
||||
Reference in New Issue
Block a user