모달 양식수정1

master
Hyung Geun 2022-03-08 10:53:14 +09:00
parent c5d6356ed9
commit 958b407558
1 changed files with 16 additions and 16 deletions

View File

@ -128,10 +128,10 @@
<table class="detail_table">
<tbody>
<tr>
<th>작업명</th>
<th colspan="2">작업명</th>
<td class="title-td">${useRequestVO.title}</td>
<th style="width:40px;">상태</th>
<td class="text-center" style="width:40px;">
<th colspan="1">상태</th>
<td colspan="1" class="text-center" >
<c:if test="${useRequestVO.status ne '99' }">
<c:choose>
<c:when test="${useRequestVO.status eq '0' }"><span class="label label-success">
@ -143,12 +143,12 @@
</td>
</tr>
<tr>
<th>기간</th>
<th colspan="2">기간</th>
<td colspan="3">${useRequestVO.s_date} ~ ${useRequestVO.e_date}</td>
</tr>
<tr>
<th>장소</td>
<td colspan="3">
<th rowspan="1" colspan="2">장소</td>
<td colspan="4">
<c:forEach var="item" items="${selectArea}" varStatus="status">
<div id="addedBlock${status.index}">
${item.name}
@ -157,10 +157,10 @@
</td>
</tr>
<tr>
<th rowspan="3">레이어</th>
<td colspan="3">
<label >지하시설물</label>
<div class="setting_content2" class="facility">
<th rowspan="3" colspan="1">레이어</th>
<th><label>지하시설물</label></th>
<td colspan="4">
<%-- <div class="setting_content2" class="facility">--%>
<c:forEach var="item" items="${layersVO}" varStatus="status">
<c:if test="${item.code eq 'facility'}">
<c:set var="faciltySize" value="${faciltySize+1}" />
@ -177,8 +177,8 @@
</td>
</tr>
<tr>
<td colspan="3">
<label>지하구조물</label>
<th>지하구조물</th>
<td colspan="4">
<div class="setting_content2" class="structure">
<c:forEach var="item" items="${layersVO}" varStatus="status">
<c:if test="${item.code eq 'structure'}">
@ -194,8 +194,8 @@
</td>
</tr>
<tr>
<td colspan="3">
<label>지반</label>
<th><label>지반</label></th>
<td colspan="4">
<div class="setting_content2" class="ground">
<c:forEach var="item" items="${layersVO}" varStatus="status">
<c:if test="${item.code eq 'ground'}">
@ -212,11 +212,11 @@
</tr>
<tr>
<th>요청 내용</th>
<td colspan="3">${useRequestVO.user_msg}</td>
<td colspan="4">${useRequestVO.user_msg}</td>
</tr>
<tr>
<th>전달 메세지</th>
<td colspan="3">${useRequestVO.admin_msg}</td>
<td colspan="4">${useRequestVO.admin_msg}</td>
</tr>
</tbody>
</table>