|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%>
|
|
|
|
|
<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%>
|
|
|
|
|
|
|
|
|
|
<c:set var="pageKorName" scope="request">민원접수 초기 자료 조회</c:set>
|
|
|
|
|
<div class="d-flex flex-row justify-content-evenly" data-doctx="${pageName}">
|
|
|
|
|
<div class="card mw-px-1000">
|
|
|
|
|
<form name="frmEdit">
|
|
|
|
@ -69,10 +69,10 @@
|
|
|
|
|
<div class="col-md-12">
|
|
|
|
|
<span class="float-end">
|
|
|
|
|
<button type="button" name="btnViewCrdnList" class="btn btn-outline-dark mx-2">
|
|
|
|
|
동일번호 <span id="outputCrdnCount--${pageName}"></span>건
|
|
|
|
|
동일번호 <span name="outputCrdnCount"></span>건
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" name="btnViewCvlcptDscsnList" class="btn btn-outline-dark mx-2">
|
|
|
|
|
차량민원 <span id="outputCvlcptDscsnCount--${pageName}"></span>건
|
|
|
|
|
차량민원 <span name="outputCvlcptDscsnCount"></span>건
|
|
|
|
|
</button>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
@ -381,7 +381,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<jsp:include page="/WEB-INF/jsp/fims/photo-main.jsp" />
|
|
|
|
|
<label for="" id="refreshEnd--${pageName}" class="parentGrid" hidden></label>
|
|
|
|
|
<div id="refreshEnd--${pageName}" class="parentGrid" hidden></div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -942,7 +942,7 @@ $(document).ready(function(){
|
|
|
|
|
//
|
|
|
|
|
resp = await countCrdnByVhrno(vhrno, taskSeCd, sggCd);
|
|
|
|
|
if(resp.crdnCount > 0){
|
|
|
|
|
$("#outputCrdnCount--${pageName}").html(resp.crdnCount);
|
|
|
|
|
$P.$find("outputCrdnCount").html(resp.crdnCount);
|
|
|
|
|
$P.$find("btnViewCrdnList").removeAttr("hidden");
|
|
|
|
|
} else {
|
|
|
|
|
$P.$find("btnViewCrdnList").attr("hidden","hidden");
|
|
|
|
@ -951,7 +951,7 @@ $(document).ready(function(){
|
|
|
|
|
//
|
|
|
|
|
resp = await countCvlcptDscsnByVhrno(vhrno, taskSeCd, sggCd);
|
|
|
|
|
if(resp.cvlcptDscsnNocs.NOCS > 0){
|
|
|
|
|
$("#outputCvlcptDscsnCount--${pageName}").html(resp.cvlcptDscsnNocs.NOCS);
|
|
|
|
|
$P.$find("outputCvlcptDscsnCount").html(resp.cvlcptDscsnNocs.NOCS);
|
|
|
|
|
$P.$find("btnViewCvlcptDscsnList").removeAttr("hidden");
|
|
|
|
|
} else {
|
|
|
|
|
$P.$find("btnViewCvlcptDscsnList").attr("hidden","hidden");
|
|
|
|
|