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

main
JoJH 2 days ago
parent 52f2c3931d
commit a93b2908db

@ -313,9 +313,8 @@
// 5. 사진영역 초기화 // 5. 사진영역 초기화
let crdnInfo = $P.ctrl.getCurrent(); let crdnInfo = $P.ctrl.getCurrent();
let existVideo = false;
initPhotoMain("${pageName}", crdnInfo.fileList, existVideo); initPhotoMain("${pageName}", crdnInfo.fileList, false, false);
}); });
</script> </script>

@ -379,11 +379,13 @@
, async function(vhrnoEl) { , async function(vhrnoEl) {
return await $P.getVehicleTotalInfo(vhrnoEl); return await $P.getVehicleTotalInfo(vhrnoEl);
} }
, false
); );
// 5. 사진영역 초기화 // 5. 사진영역 초기화
let crdnInfo = $P.ctrl.getCurrent(); let crdnInfo = $P.ctrl.getCurrent();
initPhotoMain("${pageName}", crdnInfo.fileList, false);
initPhotoMain("${pageName}", crdnInfo.fileList, false, false);
}); });
</script> </script>

@ -62,7 +62,10 @@ function newRent02020Control(pageName, doctx="[data-doctx='rent02020']") {
} }
// 재 조회 -> 1건일때 reload 사용시 오류 발생. 배열이 아니여서 발생.. 한실장님에게 수정 요청 // 재 조회 -> 1건일때 reload 사용시 오류 발생. 배열이 아니여서 발생.. 한실장님에게 수정 요청
ctrl.refresh = () => { ctrl.refresh = (query) => {
//
if (query) ctrl.query = query;
ajax.get({ ajax.get({
url: ctrl.urls.load url: ctrl.urls.load
, headers: { Accept: "application/json; charset=utf-8" } // json , headers: { Accept: "application/json; charset=utf-8" } // json
@ -74,6 +77,9 @@ function newRent02020Control(pageName, doctx="[data-doctx='rent02020']") {
// Dataset 셋팅 // Dataset 셋팅
ctrl.setData([resp.Info]); // 정보 ctrl.setData([resp.Info]); // 정보
// 사진영역 초기화
initPhotoMain(pageName, resp.Info.fileList, false, false);
} }
}); });
} }

@ -71,7 +71,7 @@ function newRent03020Control(pageName, doctx="[data-doctx='rent03020']") {
ctrl.setData([resp.Info]); // 정보 ctrl.setData([resp.Info]); // 정보
// 사진영역 초기화 // 사진영역 초기화
initPhotoMain(pageName, resp.Info.fileList, false); initPhotoMain(pageName, resp.Info.fileList, false, false);
} }
}); });
} }

Loading…
Cancel
Save