Ver código fonte

Initial Release

gagamel 5 anos atrás
pai
commit
fd00d829b6
1 arquivos alterados com 48 adições e 0 exclusões
  1. 48 0
      src/main/webapp/ux/style24_link.js

+ 48 - 0
src/main/webapp/ux/style24_link.js

@@ -0,0 +1,48 @@
+/*
+ * Common URL Definition
+ */
+const _PAGE_LOGIN = "/signin";	// GNB > 로그인
+const _PAGE_LOGOUT = "/logout";	// GNB > 로그아웃
+
+//== 메인 ==/
+const _PAGE_MAIN = _frontUrl + "/display/mall/main/form";	// 몰메인
+
+//== 고객 ==/
+
+//== 상품상세 ==/
+
+//== 장바구니 ==/
+
+//== 주문 ==/
+
+//== 마이페이지 ==/
+
+//== 검색 ==/
+
+//== 기획전 ==/
+
+//== 고객센터 ==/
+const _PAGE_FAQ = _frontUrl + "/callcenter/faq/form";		// 고객센터 > FAQ
+const _PAGE_NOTICE = _frontUrl + "/callcenter/notice/form";	// 고객센터 > 공지사항
+
+//== 기타 ==/
+
+
+/**********************************************************************************************/
+/**
+ * @type   : function
+ * @access : public
+ * @desc   : page 이동
+ * <pre>
+ *     cfnGoToPage(PAGE_LOGIN);
+ * </pre>
+ * @param  : page - page
+ * @return : None
+ * @author : gagamel
+ * @since  : 2020/02/21
+ */
+var cfnGoToPage = function(page, ithrCd) {
+	var params = page;
+	if (ithrCd) params += "&ithrCd=" + ithrCd;
+	document.location.href = params;
+}