|
|
@@ -28,7 +28,9 @@ const _PAGE_CUSTOMER_CERTIFICATION = _frontUrl + "/customer/certification/form"
|
|
|
const _PAGE_USE_TERMS = _frontUrl + "/customer/use/terms/form"; // Footer > 이용약관
|
|
|
const _PAGE_PRIVACY_POLICY = _frontUrl + "/customer/privacy/policy/form"; // Footer > 개인정보취급방침
|
|
|
const _PAGE_CUSTOMER_CONSENT_USERINFO = _frontUrl + "/customer/consent/useinfo/form"; // 정보 이용동의 : Yes24 로그인
|
|
|
-
|
|
|
+const _PAGE_USE_TERMS_LAYER = _frontUrl + "/customer/use/terms/layer"; // 회원가입 > 이용약관
|
|
|
+const _PAGE_PRIVACY_POLICY_LAYER = _frontUrl + "/customer/privacy/policy/layer"; // 회원가입 > 개인정보취급방침
|
|
|
+const _PAGE_PRIVACY_TRUST_LAYER = _frontUrl + "/customer/privacy/trust/layer"; // 회원가입 > 개인정보취급위탁
|
|
|
|
|
|
//== 상품상세 ==/
|
|
|
const _PAGE_GOODS_DETAIL = _frontUrl + "/goods/detail/form?goodsCd="; // 상품 상세
|
|
|
@@ -729,6 +731,57 @@ function cfnPasswordModify() {
|
|
|
cfOpenLayer(_PAGE_PASSWORD_MODIFY, 'pswordModifyPop');
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * @type : function
|
|
|
+ * @access : public
|
|
|
+ * @desc : 이용약관 레이어
|
|
|
+ * <pre>
|
|
|
+ * cfnUseTermsLayer();
|
|
|
+ * </pre>
|
|
|
+ */
|
|
|
+function cfnUseTermsLayer() {
|
|
|
+ let str = '<div class="modal fade policiesTerms_pop" id="policiesTermsPop" tabindex="-1" role="dialog" aria-labelledby="policiesTermsLabel" aria-hidden="true"></div>';
|
|
|
+ if ($('#policiesTermsPop').length == 0) {
|
|
|
+ $('body').append(str);
|
|
|
+ }
|
|
|
+ cfOpenLayer(_PAGE_USE_TERMS_LAYER, 'policiesTermsPop');
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * @type : function
|
|
|
+ * @access : public
|
|
|
+ * @desc : 개인정보취급방침 레이어
|
|
|
+ * <pre>
|
|
|
+ * cfnPrivacyPolicyLayer();
|
|
|
+ * </pre>
|
|
|
+ */
|
|
|
+function cfnPrivacyPolicyLayer() {
|
|
|
+ let str = '<div class="modal fade policiesPrivacy_pop" id="policiesPrivacyPop" tabindex="-1" role="dialog" aria-labelledby="policiesPrivacyLabel" aria-hidden="true"></div>';
|
|
|
+ if ($('#policiesPrivacyPop').length == 0) {
|
|
|
+ $('body').append(str);
|
|
|
+ }
|
|
|
+ cfOpenLayer(_PAGE_PRIVACY_POLICY_LAYER, 'policiesPrivacyPop');
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * @type : function
|
|
|
+ * @access : public
|
|
|
+ * @desc : 개인정보취급위탁 레이어
|
|
|
+ * <pre>
|
|
|
+ * cfnPrivacyConsignmentLayer();
|
|
|
+ * </pre>
|
|
|
+ */
|
|
|
+function cfnPrivacyTrustLayer() {
|
|
|
+ let str = '<div class="modal fade trustPrivacy_pop" id="trustPrivacyPop" tabindex="-1" role="dialog" aria-labelledby="trustPrivacyLabel" aria-hidden="true"></div>';
|
|
|
+ if ($('#trustPrivacy_pop').length == 0) {
|
|
|
+ $('body').append(str);
|
|
|
+ }
|
|
|
+ cfOpenLayer(_PAGE_PRIVACY_TRUST_LAYER, 'trustPrivacyPop');
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* @type : function
|
|
|
* @access : public
|