CalltoOrder 조건
This commit is contained in:
@@ -24,7 +24,6 @@ export default memo(function VideoOverlayWithPhoneNumber({
|
||||
patnerName,
|
||||
}) {
|
||||
const countryCode = useSelector((state) => state.common.httpHeader.cntry_cd);
|
||||
|
||||
return (
|
||||
<>
|
||||
{orderPhnNo && (
|
||||
@@ -32,7 +31,9 @@ export default memo(function VideoOverlayWithPhoneNumber({
|
||||
className={classNames(
|
||||
className && className,
|
||||
css.callBox,
|
||||
countryCode === "DE" && patnerName === "QVC" && css.de
|
||||
countryCode === "DE" && patnerName === "QVC" && css.de,
|
||||
countryCode === "US" && patnerName === "HSN" && css.hsn,
|
||||
countryCode === "US" && patnerName === "QVC" && css.qvc
|
||||
)}
|
||||
>
|
||||
<div className={css.callToOrder}>{$L(CALL_TO_ORDER_STRING)}</div>
|
||||
|
||||
@@ -156,14 +156,16 @@ export default function IndicatorOptions({
|
||||
</div>
|
||||
)}
|
||||
|
||||
{(isCall || isFullOption) && productInfo?.orderPhnNo && (
|
||||
<div className={css.order} aria-label={productInfo?.orderPhnNo}>
|
||||
<div className={css.icon}>
|
||||
<span />
|
||||
<div>{productInfo?.orderPhnNo}</div>
|
||||
{(isCall || isFullOption) &&
|
||||
productInfo?.orderPhnNo &&
|
||||
productInfo?.orderPhnProdFlag === "Y" && (
|
||||
<div className={css.order} aria-label={productInfo?.orderPhnNo}>
|
||||
<div className={css.icon}>
|
||||
<span />
|
||||
<div>{productInfo?.orderPhnNo}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
)}
|
||||
{isDescription && (
|
||||
<div
|
||||
className={css.description}
|
||||
|
||||
Reference in New Issue
Block a user