배경수정?

master
Hyung Geun 2022-03-03 09:05:00 +09:00
parent 59d13f99b5
commit f287465a8a
3 changed files with 69 additions and 62 deletions

View File

@ -12,13 +12,15 @@
<script> <script>
const field_data = JSON.parse('${fieldDataVO.field_data}'); const field_data = JSON.parse('${fieldDataVO.field_data}');
</script> </script>
<script src="<c:out value="/js/admin/fieldView.js" />"></script> <script src="<c:out value="/js/admin/fieldView.js" />"></script>
<div class="section_title"> <div class="section_title">
<!-- <p>현장 지원 시스템</p> --> <!-- <p>현장 지원 시스템</p> -->
</div> </div>
<div class="row justify-content-end bg-white mx-3 py-2">
<div class="section_content"> <div class="section_content">
<table class="table table-hover text-center"> <div class="row justify-content-end bg-white mx-3 py-2">
<table class="table table-hover text-center">
<thead> <thead>
<tr> <tr>
<h5>담당자</h5> <h5>담당자</h5>
@ -35,57 +37,59 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div>
<table class="table table-hover text-center"> <div class="row justify-content-end bg-white mx-3 mt-3 mb-2 py-2">
<thead> <table class="table table-hover text-center">
<tr> <thead>
<h3>현장수집 데이터</h3> <tr>
</tr> <h3>현장수집 데이터</h3>
</thead> </tr>
<tbody> </thead>
<tr> <tbody>
<th>레이어 ID</th> <tr>
<td class="text-center"><c:out value="${fieldDataVO.layer_id}" /></td> <th>레이어 ID</th>
<th>수집일</th> <td class="text-center"><c:out value="${fieldDataVO.layer_id}" /></td>
<td class="text-center"><c:out value="${fieldDataVO.save_date}" /></td> <th>수집일</th>
</tr> <td class="text-center"><c:out value="${fieldDataVO.save_date}" /></td>
<tr> </tr>
<th>지역</th> <tr>
<td class="text-center"><c:out value="${fieldDataVO.region}" /></td> <th>지역</th>
<th>상태</th> <td class="text-center"><c:out value="${fieldDataVO.region}" /></td>
<td class="text-center"> <th>상태</th>
<c:choose> <td class="text-center">
<c:when test="${fieldDataVO.status eq '0'}"> <c:choose>
<span class="label label-warning">수집</span> <c:when test="${fieldDataVO.status eq '0'}">
</c:when> <span class="label label-warning">수집</span>
<c:when test="${fieldDataVO.status eq '1'}"> </c:when>
<span class="label label-danger">검증실패</span> <c:when test="${fieldDataVO.status eq '1'}">
</c:when> <span class="label label-danger">검증실패</span>
<c:when test="${fieldDataVO.status eq '2'}"> </c:when>
<span class="label label-success">검증성공</span> <c:when test="${fieldDataVO.status eq '2'}">
</c:when> <span class="label label-success">검증성공</span>
<c:when test="${fieldDataVO.status eq '3'}"> </c:when>
<span class="label label-danger">반영실패</span> <c:when test="${fieldDataVO.status eq '3'}">
</c:when> <span class="label label-danger">반영실패</span>
<c:when test="${fieldDataVO.status eq '4'}"> </c:when>
<span class="label label-success">반영</span> <c:when test="${fieldDataVO.status eq '4'}">
</c:when> <span class="label label-success">반영</span>
</c:choose> </c:when>
</td> </c:choose>
</tr> </td>
<tr> </tr>
<th>설명</th> <tr>
<td></td> <th>설명</th>
<th>오류내용</th> <td></td>
<td></td> <th>오류내용</th>
</tr> <td></td>
</tbody> </tr>
</table> </tbody>
<div class="table table-hover text-center"> </table>
<div class="mapWrap"> </div>
<div class="map-title text-center">측량데이터</div> <div class="py-2 mx-3">
<div class="map" id="map"> </div> <div class="mapWrap">
</div> <div class="map-title text-center">측량데이터</div>
<div class="map" id="map"> </div>
</div>
<div class="fieldDataDiv"> <div class="fieldDataDiv">
<table class="fieldDataTable" id="fieldDataTable"> <table class="fieldDataTable" id="fieldDataTable">
<thead> <thead>
@ -97,9 +101,9 @@
</tbody> </tbody>
</table> </table>
</div> </div>
<ul id="fieldDataPaging" class="fieldDataPaging"></ul> <ul id="fieldDataPaging" class="fieldDataPaging"></ul>
</div> </div>
<div class="section_btn"> <div class="section_btn">
<p class="search_p1"> <p class="search_p1">
<input class="btn btn-primary" type="button" value="목록" onclick="location.href='/admin/fieldData'" /> <input class="btn btn-primary" type="button" value="목록" onclick="location.href='/admin/fieldData'" />

View File

@ -14,11 +14,11 @@
<div class="section_title"> <div class="section_title">
<!-- <p>현장 지원 시스템</p> --> <!-- <p>현장 지원 시스템</p> -->
</div> </div>
<div class="row justify-content-between bg-white mx-3 py-2">
<div class="section_content"> <div class="section_content">
<input type="hidden" id="layers" name="layers"/> <input type="hidden" id="layers" name="layers"/>
<input type="hidden" id="places" name="places"/> <input type="hidden" id="places" name="places"/>
<div class="row justify-content-between bg-white mx-3 py-2">
<table class="table table-hover text-center"> <table class="table table-hover text-center">
<thead> <thead>
@ -45,7 +45,7 @@
</table> </table>
</div> </div>
<div class="row justify-content-between bg-white mx-3 py-2"> <div class="row justify-content-between bg-white mx-3 mt-4 py-2">
<table class="table table-hover text-center"> <table class="table table-hover text-center">
<thead> <thead>
<h3 class="h4 m-3">지도사용 요청</h3> <h3 class="h4 m-3">지도사용 요청</h3>
@ -144,7 +144,7 @@
<c:choose> <c:choose>
<c:when test="${useRequestVO.status eq '99'}"> <c:when test="${useRequestVO.status eq '99'}">
<table class="detail_table"> <table class="detail_table mx-3" >
<tbody> <tbody>
<tr> <tr>
<th>전달 메세지</th> <th>전달 메세지</th>
@ -174,7 +174,8 @@
</c:when> </c:when>
<c:otherwise> <c:otherwise>
<table class="detail_table">
<table class="detail_table bg">
<tbody> <tbody>
<tr> <tr>
<th>전달 메세지</th> <th>전달 메세지</th>
@ -183,6 +184,7 @@
</tbody> </tbody>
</table> </table>
<div class="section_btn"> <div class="section_btn">
<p class="search_p1"> <p class="search_p1">
<input class="btn btn-primary" type="button" value="목록" onclick="location.href='/admin/request'" /> <input class="btn btn-primary" type="button" value="목록" onclick="location.href='/admin/request'" />

View File

@ -177,6 +177,7 @@ a {
.fieldDataTable{ .fieldDataTable{
width:100%; width:100%;
box-sizing: border-box; box-sizing: border-box;
} }
.fieldDataTable>thead>tr:first-child>th { .fieldDataTable>thead>tr:first-child>th {
@ -501,7 +502,7 @@ a {
.fieldDataDiv{ .fieldDataDiv{
float:left; float:left;
width:50%; width:50%;
height:490px; height:495px;
margin-left: 2%; margin-left: 2%;
overflow-y: scroll; overflow-y: scroll;
border-bottom:1px solid #ccc; border-bottom:1px solid #ccc;