단속사진 모자이크 표시 체크박스 추가

main
이범준 11 months ago
parent c2eeec7b6d
commit f5ef588b2d

@ -39,6 +39,12 @@
보안모드 보안모드
</label> </label>
</div> </div>
<div class="form-check-inline custom-option custom-option-basic" style="background-color: #d9dee3">
<label for="photoMask--top" class="form-check-label custom-option-content">
<input type="checkbox" id="photoMask--top" name="photoMask" class="form-check-input" value="Y" checked />
단속사진 모자이크
</label>
</div>
<button type="button" id="btnGoToCvlcptDscsn" class="btn btn-outline-dark"> <button type="button" id="btnGoToCvlcptDscsn" class="btn btn-outline-dark">
종합민원관리 종합민원관리
</button> </button>
@ -218,6 +224,15 @@ function fn_securityModeToggle(flag, elementId){
} }
}
/*
* 단속사진 마스킹
*/
function fn_photoMask(flag, elementId){
} }
/*--------------------- 통합조회 버튼 클릭 이벤트 ---------------------*/ /*--------------------- 통합조회 버튼 클릭 이벤트 ---------------------*/
@ -281,5 +296,14 @@ $("#securityMode--top").on( "click", function() {
fn_securityModeToggle(false); fn_securityModeToggle(false);
} }
}); });
/*--------------------- 단속사진 모자이크 체크박스 클릭 이벤트 ---------------------*/
$("#photoMask--top").on( "click", function() {
if($("#photoMask--top").is(":checked")){
fn_photoMask(true);
} else {
fn_photoMask(false);
}
});
</c:set> </c:set>

@ -13,8 +13,30 @@ document.addEventListener('keydown', (event) => {
if(KEYS_FOR_GLOBAL.includes(event.key)){ //전역 기능 if(KEYS_FOR_GLOBAL.includes(event.key)){ //전역 기능
if(event.key == "F9"){
if($("#securityMode--top").is(":checked")){
$("#securityMode--top").prop("checked", false);
fn_securityModeToggle(false);
} else {
$("#securityMode--top").prop("checked", true);
fn_securityModeToggle(true);
}
}
if(event.key == "F10"){
if($("#photoMask--top").is(":checked")){
$("#photoMask--top").prop("checked", false);
fn_photoMask(false);
} else {
$("#photoMask--top").prop("checked", true);
fn_photoMask(true);
}
}
if(!activeBasckdropYn){ if(!activeBasckdropYn){
//TODO : do somthing //TODO : do something
} }
} else { //페이지별,다이얼로그별 버튼 } else { //페이지별,다이얼로그별 버튼

Loading…
Cancel
Save