1. 단속 사진에 버튼 활성화 부분 수정.

main
JoJH 2 days ago
parent cf590054c5
commit 4ca04a6a71

@ -295,7 +295,7 @@ function settingPhotoMain(pageName, crdnIdElement, carInfoFunc, carLinkFunc){
} }
} }
function initPhotoMain(pageName, fileList, existVideo){ function initPhotoMain(pageName, fileList, existVideo, showBtn=true){
let $P = pageObject[pageName]; let $P = pageObject[pageName];
@ -305,9 +305,10 @@ function initPhotoMain(pageName, fileList, existVideo){
} else { } else {
$P.$findn("btnOpenVideoCapture").hide(); $P.$findn("btnOpenVideoCapture").hide();
} }
// 버튼 div를 숨긴다.
// 렌트업무에서는 버튼을 숨긴다. if (showBtn) {
if (pageName == "rent02020" || pageName == "rent03020") { $P.$findn("divBtn").show();
} else {
$P.$findn("divBtn").hide(); $P.$findn("divBtn").hide();
} }

Loading…
Cancel
Save