From 07d1ebc7babe86055ce0b0da70600d2e9f9dba52 Mon Sep 17 00:00:00 2001 From: JSYOO Date: Fri, 3 Dec 2021 11:47:49 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B0=90=EB=A6=AC=EC=9C=84=EB=B0=98=20?= =?UTF-8?q?=EC=9B=B9=EC=A0=91=EA=B7=BC=EC=84=B1=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jsp/nlib/collection/searchItemDetail.jsp | 6 ++--- .../jsp/nlib/member/insertMemberInfoForm.jsp | 24 ++++++++++++++----- .../nlib/member/selectMemberJoiningInfo.jsp | 4 ++-- src/main/webapp/js/qrcode.js | 2 +- 4 files changed, 24 insertions(+), 12 deletions(-) diff --git a/src/main/webapp/WEB-INF/jsp/nlib/collection/searchItemDetail.jsp b/src/main/webapp/WEB-INF/jsp/nlib/collection/searchItemDetail.jsp index d8fe63b2..87eda3d7 100644 --- a/src/main/webapp/WEB-INF/jsp/nlib/collection/searchItemDetail.jsp +++ b/src/main/webapp/WEB-INF/jsp/nlib/collection/searchItemDetail.jsp @@ -128,7 +128,7 @@ function goList(){ - +
@@ -363,7 +363,7 @@ function goList(){

목차정보

- +

없음

@@ -387,7 +387,7 @@ function goList(){

자료유형- ${result.typeDivNm } >${result.dtlsTypeDivNm}

-

주제분야- ${result.subjectNm } >${result.subjectNm}

+

주제분야- ${result.subjectNm } >${result.subjectNm}

생산기관-${result.orgNm }

생산년도-${result.creatYyyy }

diff --git a/src/main/webapp/WEB-INF/jsp/nlib/member/insertMemberInfoForm.jsp b/src/main/webapp/WEB-INF/jsp/nlib/member/insertMemberInfoForm.jsp index 3397dafe..2ed99ad5 100644 --- a/src/main/webapp/WEB-INF/jsp/nlib/member/insertMemberInfoForm.jsp +++ b/src/main/webapp/WEB-INF/jsp/nlib/member/insertMemberInfoForm.jsp @@ -68,10 +68,22 @@ function signUp(){ alert("생년월일이 형식에 맞지 않습니다. 확인해주세요."); return false; } - if($("#mobileNo_1").val() == "" || $("#mobileNo_2").val() == "" || $("#mobileNo_3").val() == "") + if($("#mobileNo_1").val() == "") { $("#mobileNo_1").focus(); - alert("휴대폰 번호를 입력해주세요."); + alert("휴대폰 번호 앞자리를 입력해주세요."); + return false; + } + if($("#mobileNo_2").val() == "") + { + $("#mobileNo_2").focus(); + alert("휴대폰 번호 중간자리를 입력해주세요."); + return false; + } + if($("#mobileNo_3").val() == "") + { + $("#mobileNo_3").focus(); + alert("휴대폰 번호 끝자리를 입력해주세요."); return false; } if($("#mobileCertYn").val()!="Y") @@ -620,9 +632,9 @@ function fn_cancel(){
- - - - - + - + - +
@@ -657,7 +669,7 @@ function fn_cancel(){
- +
diff --git a/src/main/webapp/WEB-INF/jsp/nlib/member/selectMemberJoiningInfo.jsp b/src/main/webapp/WEB-INF/jsp/nlib/member/selectMemberJoiningInfo.jsp index b74e969c..8724f2f1 100644 --- a/src/main/webapp/WEB-INF/jsp/nlib/member/selectMemberJoiningInfo.jsp +++ b/src/main/webapp/WEB-INF/jsp/nlib/member/selectMemberJoiningInfo.jsp @@ -92,7 +92,7 @@ function cancle(){
-
+
@@ -103,7 +103,7 @@ function cancle(){
-
+
diff --git a/src/main/webapp/js/qrcode.js b/src/main/webapp/js/qrcode.js index 32a40569..27aa0e8e 100644 --- a/src/main/webapp/js/qrcode.js +++ b/src/main/webapp/js/qrcode.js @@ -362,7 +362,7 @@ var QRCode; this._oContext = this._elCanvas.getContext("2d"); this._bIsPainted = false; this._elImage = document.createElement("img"); - this._elImage.alt = "자료상세 바로가기"; + this._elImage.alt = "자료상세 QR코드(" + $("#p_link-copy").val() + ")"; this._elImage.style.display = "none"; this._el.appendChild(this._elImage); this._bSupportDataURI = null;