|
|
@ -371,9 +371,9 @@
|
|
|
|
<div class="content-backdrop fade"></div>
|
|
|
|
<div class="content-backdrop fade"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<script type="module" src="<c:url value='/resources/js/fims/crdn/inspection.js?${ver}'/>"></script>
|
|
|
|
<script>
|
|
|
|
<script ${module}>
|
|
|
|
LoadScript("inspectionScript","/resources/js/fims/crdn/inspection.js");
|
|
|
|
import {InspectionControl, fnMakeImgTag} from "<c:url value='/resources/js/fims/crdn/inspection.js?${ver}'/>";
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
/**************************************************************************
|
|
|
|
* Global Variable
|
|
|
|
* Global Variable
|
|
|
|
**************************************************************************/
|
|
|
|
**************************************************************************/
|
|
|
@ -708,11 +708,11 @@ $(document).ready(function(){
|
|
|
|
$("#nextDataFiles--${pageName}").html("");
|
|
|
|
$("#nextDataFiles--${pageName}").html("");
|
|
|
|
|
|
|
|
|
|
|
|
currentDataFileList.forEach(function(item, index, array){
|
|
|
|
currentDataFileList.forEach(function(item, index, array){
|
|
|
|
var output = fnMakeImgTag(item.URL, item.FILE_NM,"cur"+item.FILE_ID+'${pageName}',item.MOSAIC);
|
|
|
|
var output = fnMakeImgTagForInspection(item.URL, item.FILE_NM,"cur"+item.FILE_ID+'${pageName}',item.MOSAIC);
|
|
|
|
$("#curDataFiles--${pageName}").append(output);
|
|
|
|
$("#curDataFiles--${pageName}").append(output);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
nextDataFileList.forEach(function(item, index, array){
|
|
|
|
nextDataFileList.forEach(function(item, index, array){
|
|
|
|
var output = fnMakeImgTag(item.URL, item.FILE_NM,"next"+item.FILE_ID+'${pageName}',item.MOSAIC);
|
|
|
|
var output = fnMakeImgTagForInspection(item.URL, item.FILE_NM,"next"+item.FILE_ID+'${pageName}',item.MOSAIC);
|
|
|
|
$("#nextDataFiles--${pageName}").append(output);
|
|
|
|
$("#nextDataFiles--${pageName}").append(output);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|