Переглянути джерело

Merge remote-tracking branch 'origin/style' into jsh77b

jsh77b 4 роки тому
батько
коміт
5b68943623

+ 4 - 2
src/main/webapp/WEB-INF/views/mob/order/OrderFormMob.html

@@ -771,10 +771,12 @@ var orderGiftInfoSet = function() {
 
 // 2021.06.03 어플 callback 함수 호출
 function contactInfo(jsonString) {
-	let data = JSON.parse(jsonString);
+	let data;
 
 	// IOS는 디코딩 처리 필요
-	if (_osType === 'I') {
+	if (_osType === 'A') {
+		data = JSON.parse(jsonString);
+	} else if (_osType === 'I') {
 		data = JSON.parse(decodeURIComponent(escape(atob(jsonString))));
 	}