|
|
@ -379,7 +379,20 @@ $(document).ready(function() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(cur != null){
|
|
|
|
if(cur != null){
|
|
|
|
navigator.clipboard.writeText(cur.RTPYR_NO);
|
|
|
|
|
|
|
|
|
|
|
|
if(window.isSecureContext){
|
|
|
|
|
|
|
|
navigator.clipboard.writeText(cur.RTPYR_NO);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
var textArea = document.createElement("textarea");
|
|
|
|
|
|
|
|
textArea.style.position = "fixed";
|
|
|
|
|
|
|
|
textArea.value = cur.RTPYR_NO;
|
|
|
|
|
|
|
|
document.body.appendChild(textArea);
|
|
|
|
|
|
|
|
textArea.focus();
|
|
|
|
|
|
|
|
textArea.select();
|
|
|
|
|
|
|
|
document.execCommand('copy');
|
|
|
|
|
|
|
|
document.body.removeChild(textArea);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$("#toastText--${pageName}").html("납부자번호가 복사되었습니다.");
|
|
|
|
$("#toastText--${pageName}").html("납부자번호가 복사되었습니다.");
|
|
|
|
$P.toast.show();
|
|
|
|
$P.toast.show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|