card007 5 лет назад
Родитель
Сommit
6635af87ea

+ 1 - 0
src/main/resources/config/application-style.yml

@@ -89,6 +89,7 @@ pg:
         log.level: 3
         module.type: 01
         tx.mode: 0
+        receipt.url : https://testadmin8.kcp.co.kr/assist/bill.BillActionNew.do
 
 # 네이버페이 API
 naverPay:

+ 8 - 0
src/main/webapp/WEB-INF/views/mob/mypage/MypageCreListInfoMob.html

@@ -252,3 +252,11 @@
 	</div>
 </div>
 
+<script th:inline="javascript">
+	$(document).ready(function() {
+		if ([[${pageNo}]] > 1) {
+			$('.part_goods').css('border-top', '1px solid #eee');
+		}
+	});
+</script>
+

+ 10 - 7
src/main/webapp/WEB-INF/views/mob/mypage/MypageOrderListInfoMob.html

@@ -521,13 +521,16 @@
 </div>
 
 <script th:inline="javascript">
-// 버튼 클래스 설정
-$.each($('.btn_count'), function(idx, item) {
-	if ($(item).children().length > 3 && !$(item).hasClass('col2')) {
-		$(item).addClass('col2');
+$(document).ready(function() {
+	// 버튼 클래스 설정
+	$.each($('.btn_count'), function(idx, item) {
+		if ($(item).children().length > 3 && !$(item).hasClass('col2')) {
+			$(item).addClass('col2');
+		}
+	});
+	
+	if ([[${pageNo}]] > 1) {
+		$('.part_goods').css('border-top', '1px solid #eee');
 	}
 });
 </script>
-
-</th:block>
-

+ 8 - 0
src/main/webapp/WEB-INF/views/mob/mypage/NoMemberCreListInfoMob.html

@@ -248,3 +248,11 @@
 	</div>
 </div>
 
+<script th:inline="javascript">
+	$(document).ready(function() {
+		if ([[${pageNo}]] > 1) {
+			$('.part_goods').css('border-top', '1px solid #eee');
+		}
+	});
+</script>
+

+ 1 - 1
src/main/webapp/WEB-INF/views/mob/mypage/NoMemberOrderListFormMob.html

@@ -255,7 +255,7 @@ var fnGetInfiniteScrollDataList = function(pageNo) {
 		if (ordNoList.length > 0) {
 			$.ajax({
 				type: "POST",
-				url: '/mypage/order/list/info',
+				url: '/noMember/order/list/info',
 				data: JSON.stringify(jsonObj),
 				dataType: 'html',
 				beforeSend: function (xhr, settings) {