--- src/main/java/itn/let/uat/uia/web/EgovMypageController.java
+++ src/main/java/itn/let/uat/uia/web/EgovMypageController.java
... | ... | @@ -2952,7 +2952,6 @@ |
| 2952 | 2952 |
String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId()); |
| 2953 | 2953 |
|
| 2954 | 2954 |
|
| 2955 |
- mberCertLoginLogVO.setLoginId(userId); |
|
| 2956 | 2955 |
/** pageing */ |
| 2957 | 2956 |
PaginationInfo paginationInfo = new PaginationInfo(); |
| 2958 | 2957 |
paginationInfo.setCurrentPageNo(mberCertLoginLogVO.getPageIndex()); |
... | ... | @@ -2967,7 +2966,8 @@ |
| 2967 | 2966 |
mberCertLoginLogVO.setSearchSortOrd("asc");
|
| 2968 | 2967 |
} |
| 2969 | 2968 |
|
| 2970 |
- |
|
| 2969 |
+ |
|
| 2970 |
+ mberCertLoginLogVO.setLoginId(userId); |
|
| 2971 | 2971 |
//전체 발송 리스트 불러오기 |
| 2972 | 2972 |
List<MberCertLoginLogVO> resultList = certLoginLogService.findAllCertLoginLogVO(mberCertLoginLogVO); |
| 2973 | 2973 |
model.addAttribute("resultList", resultList);
|
--- src/main/webapp/WEB-INF/jsp/web/user/mberSecureLogin.jsp
+++ src/main/webapp/WEB-INF/jsp/web/user/mberSecureLogin.jsp
... | ... | @@ -37,14 +37,37 @@ |
| 37 | 37 |
}); |
| 38 | 38 |
|
| 39 | 39 |
// on/off 시 confirm 창 노출 |
| 40 |
- $('.security_set .tab_depth1 a').click(function () {
|
|
| 41 |
- if ($(this).text().trim() == "ON") {
|
|
| 42 |
- confirm("보안로그인 설정 후 로그인 시, 등록한 휴대폰번호로 추가 인증이 진행됩니다");
|
|
| 43 |
- |
|
| 44 |
- } else {
|
|
| 45 |
- confirm("가입자 휴대폰번호로 본인인증 후 해제가 가능하며, 보안로그인 설정을 해제함으로써 발생하는 손해에 대하여 회사는 책임지지 않습니다.");
|
|
| 46 |
- openKMCISWindow(); |
|
| 40 |
+ $('.security_tab a').click(function (e) {
|
|
| 41 |
+ |
|
| 42 |
+ |
|
| 43 |
+ console.log($(this).hasClass("on"))
|
|
| 44 |
+ if ($(this).hasClass("on") == false) {
|
|
| 45 |
+ if ($(this).text().trim() == "ON") {
|
|
| 46 |
+ if (!confirm("보안로그인 설정 후 로그인 시, 등록한 휴대폰번호로 추가 인증이 진행됩니다")) {
|
|
| 47 |
+ $(this).removeClass("on");
|
|
| 48 |
+ $(this).siblings("a").addClass("on");
|
|
| 49 |
+ } else {
|
|
| 50 |
+ $(this).addClass("on");
|
|
| 51 |
+ $(this).siblings("a").removeClass("on");
|
|
| 52 |
+ } |
|
| 53 |
+ } else {
|
|
| 54 |
+ if (!confirm("가입자 휴대폰번호로 본인인증 후 해제가 가능하며, 보안로그인 설정을 해제함으로써 발생하는 손해에 대하여 회사는 책임지지 않습니다.")) {
|
|
| 55 |
+ $(this).removeClass("on");
|
|
| 56 |
+ $(this).siblings("a").addClass("on");
|
|
| 57 |
+ } else {
|
|
| 58 |
+ $(this).addClass("on");
|
|
| 59 |
+ $(this).siblings("a").removeClass("on");
|
|
| 60 |
+ openKMCISWindow(); |
|
| 61 |
+ } |
|
| 62 |
+ } |
|
| 47 | 63 |
} |
| 64 |
+ |
|
| 65 |
+ |
|
| 66 |
+ |
|
| 67 |
+ |
|
| 68 |
+ |
|
| 69 |
+ |
|
| 70 |
+ |
|
| 48 | 71 |
}); |
| 49 | 72 |
|
| 50 | 73 |
// 인증번호 발송 버튼 |
... | ... | @@ -617,8 +640,7 @@ |
| 617 | 640 |
<div class="set_area"> |
| 618 | 641 |
<p class="lately_date">최근 변경일시 : <span>2024-11-01 12:49</span></p> |
| 619 | 642 |
|
| 620 |
- <div class="tab_depth1"> |
|
| 621 |
-<!-- <a href="#none" class="on">ON</a> --> |
|
| 643 |
+ <div class="tab_depth1 security_tab"> |
|
| 622 | 644 |
<a href="#none" class="on">ON</a> |
| 623 | 645 |
<a href="#none">OFF</a> |
| 624 | 646 |
</div> |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?