2024-01-31 18:04 기소유예 관리자 공개/비공개 여부 수정

This commit is contained in:
myname 2024-01-31 18:04:41 +09:00
parent 34ce6df5e9
commit b376de8781
2 changed files with 15 additions and 3 deletions

View File

@ -378,6 +378,18 @@
<ve:code codeId="VEA004" code="${info.ddlnCd}"/>
</td>
</tr>
<tr>
<th scope="row">
<p>공개여부(사용여부)</p>
</th>
<td>
${empty info.useYn or info.useYn eq 'Y' ? '공개' : ''}
${info.useYn eq 'N' ? '비공개' : ''}
</td>
</tr>
<%-- <tr>
<th scope="row">
<p>공개여부(사용여부)</p>

View File

@ -305,9 +305,9 @@
<p>공개여부(사용여부)</p>
</th>
<td>
<input type="radio" name="useYn" id="useY" value="Y" ${empty vEEduAplctVO.useYn or vEEduAplctVO.useYn eq 'Y' ? 'checked' : vEEduAplctVO.useYn}>
<input type="radio" name="useYn" id="useY" value="Y" ${empty info.useYn or info.useYn eq 'Y' ? 'checked' : info.useYn}>
<label for="useY">예</label>
<input type="radio" name="useYn" id="useN" value="N" ${vEEduAplctVO.useYn eq 'N' ? 'checked' : vEEduAplctVO.useYn}>
<input type="radio" name="useYn" id="useN" value="N" ${info.useYn eq 'N' ? 'checked' : info.useYn}>
<label for="useN">아니오</label>
</td>