# Conflicts:
#	src/main/webapp/WEB-INF/jsp/admin/fieldView.jsp
master
강석 최 2022-03-02 17:45:09 +09:00
commit 59d13f99b5
8 changed files with 201 additions and 203 deletions

View File

@ -13,106 +13,101 @@
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">
<table class="table table-hover text-center">
<thead>
<tr>
<h5>담당자</h5>
</tr>
</thead>
<tbody>
<tr>
<th>소속</th>
<td class="text-center"><c:out value='${userVO.company}' /></td>
<th>이름</th>
<td class="text-center"><c:out value='${userVO.name}' /></td>
<th>연락처</th>
<td class="text-center"><c:out value='${userVO.phonenum}' /></td>
</tr>
</tbody>
</table>
<div class="section_content"> <table class="table table-hover text-center">
<table class="detail_table"> <thead>
<thead> <tr>
<tr> <h3>현장수집 데이터</h3>
<th colspan="6">담당자</th> </tr>
</tr> </thead>
</thead> <tbody>
<tbody> <tr>
<tr> <th>레이어 ID</th>
<th>소속</th> <td class="text-center"><c:out value="${fieldDataVO.layer_id}" /></td>
<td class="text-center"><c:out value='${userVO.company}' /></td> <th>수집일</th>
<th>담당자</th> <td class="text-center"><c:out value="${fieldDataVO.save_date}" /></td>
<td class="text-center"><c:out value='${userVO.name}' /></td> </tr>
<th>연락처</th> <tr>
<td class="text-center"><c:out value='${userVO.phonenum}' /></td> <th>지역</th>
</tr> <td class="text-center"><c:out value="${fieldDataVO.region}" /></td>
</tbody> <th>상태</th>
</table> <td class="text-center">
<c:choose>
<c:when test="${fieldDataVO.status eq '0'}">
<span class="label label-warning">수집</span>
</c:when>
<c:when test="${fieldDataVO.status eq '1'}">
<span class="label label-danger">검증실패</span>
</c:when>
<c:when test="${fieldDataVO.status eq '2'}">
<span class="label label-success">검증성공</span>
</c:when>
<c:when test="${fieldDataVO.status eq '3'}">
<span class="label label-danger">반영실패</span>
</c:when>
<c:when test="${fieldDataVO.status eq '4'}">
<span class="label label-success">반영</span>
</c:when>
</c:choose>
</td>
</tr>
<tr>
<th>설명</th>
<td></td>
<th>오류내용</th>
<td></td>
</tr>
</tbody>
</table>
<div class="table table-hover text-center">
<div class="mapWrap">
<div class="map-title text-center">측량데이터</div>
<div class="map" id="map"> </div>
</div>
<div class="fieldDataDiv">
<table class="fieldDataTable" id="fieldDataTable">
<thead>
<tr>
<th colspan="4">속성정보</th>
</tr>
</thead>
<tbody id="fieldDataBody">
<table class="detail_table"> </tbody>
<thead> </table>
<tr> </div>
<th colspan="4">지도정보</th> <ul id="fieldDataPaging" class="fieldDataPaging"></ul>
</tr>
</thead>
<tbody>
<tr>
<th>레이어 ID</th>
<td class="text-center"><c:out value="${fieldDataVO.layer_id}" /></td>
<th>수집일</th>
<td class="text-center"><c:out value="${fieldDataVO.save_date}" /></td>
</tr>
<tr>
<th>지역</th>
<td class="text-center"><c:out value="${fieldDataVO.region}" /></td>
<th>상태</th>
<td class="text-center">
<c:choose>
<c:when test="${fieldDataVO.status eq '0'}">
<span class="label label-warning">수집</span>
</c:when>
<c:when test="${fieldDataVO.status eq '1'}">
<span class="label label-danger">검증실패</span>
</c:when>
<c:when test="${fieldDataVO.status eq '2'}">
<span class="label label-success">검증성공</span>
</c:when>
<c:when test="${fieldDataVO.status eq '3'}">
<span class="label label-danger">반영실패</span>
</c:when>
<c:when test="${fieldDataVO.status eq '4'}">
<span class="label label-success">반영</span>
</c:when>
</c:choose>
</td>
</tr>
<tr>
<th>설명</th>
<td></td>
<th>오류내용</th>
<td></td>
</tr>
</tbody>
</table>
<div class="field_data_content">
<div class="mapWrap">
<div class="map-title">측량데이터</div>
<div class="map" id="map"> </div>
</div> </div>
<div class="fieldDataDiv"> <div class="section_btn">
<table class="fieldDataTable" id="fieldDataTable"> <p class="search_p1">
<thead> <input class="btn btn-primary" type="button" value="목록" onclick="location.href='/admin/fieldData'" />
<tr> </p>
<th colspan="4">속성정보</th> <p class="search_p2">
</tr> <input class="btn btn-secondary" type="button" value="표준DB변환 및 검증" onclick="fieldVerify();" />
</thead> <input class="btn btn-success" type="button" value="반영" onclick="fieldReflect();" />
<tbody id="fieldDataBody"> </p>
</tbody>
</table>
</div> </div>
<ul id="fieldDataPaging" class="fieldDataPaging"></ul>
</div>
<div class="section_btn">
<p class="search_p1">
<input class="btn btn-primary" type="button" value="목록" onclick="location.href='/admin/fieldData'" />
</p>
<p class="search_p2">
<input class="btn btn-secondary" type="button" value="표준DB변환 및 검증" onclick="fieldVerify();" />
<input class="btn btn-success" type="button" value="반영" onclick="fieldReflect();" />
</p>
</div> </div>
</div> </div>

View File

@ -9,18 +9,22 @@
<div class="section_title"> <div class="section_title">
<!-- <p>지도사용 이력</p> --> <!-- <p>지도사용 이력</p> -->
</div> </div>
<div class="section_content"> <div class="section_content">
<h1 class="h4 m-3">지도사용 이력</h1>
<form:form commandName="UseHistorySearchVO" name="searchForm" action="/admin/history" method="get"> <form:form commandName="UseHistorySearchVO" name="searchForm" action="/admin/history" method="get">
<div class="d-flex justify-content-end">
<div class="row"> <div class="row justify-content-end bg-white mx-3 py-2">
<div class="col-auto">
<select class="form-select" name="searchCondition"> <div class="col-auto row">
<option <c:if test="${UseHistorySearchVO.searchCondition eq 'all'}"><c:out value="selected" /></c:if> value="all">통합검색</option> <div class="col-auto">
<option <c:if test="${UseHistorySearchVO.searchCondition eq 'name'}"><c:out value="selected" /></c:if> value="name">이름</option> <select class="form-select" name="searchCondition">
<option <c:if test="${UseHistorySearchVO.searchCondition eq 'company'}"><c:out value="selected" /></c:if> value="company">소속</option> <option <c:if test="${UseHistorySearchVO.searchCondition eq 'all'}"><c:out value="selected" /></c:if> value="all">통합검색</option>
<option <c:if test="${UseHistorySearchVO.searchCondition eq 'req_area'}"><c:out value="selected" /></c:if> value="req_area">위치</option> <option <c:if test="${UseHistorySearchVO.searchCondition eq 'name'}"><c:out value="selected" /></c:if> value="name">이름</option>
</select> <option <c:if test="${UseHistorySearchVO.searchCondition eq 'company'}"><c:out value="selected" /></c:if> value="company">소속</option>
</div> <option <c:if test="${UseHistorySearchVO.searchCondition eq 'req_area'}"><c:out value="selected" /></c:if> value="req_area">위치</option>
</select>
</div>
<div class="col-auto"> <div class="col-auto">
<input type="text" class="form-control" name="searchKeyword" value="${UseHistorySearchVO.searchKeyword}" /> <input type="text" class="form-control" name="searchKeyword" value="${UseHistorySearchVO.searchKeyword}" />
@ -29,13 +33,12 @@
<input class="btn btn-outline-secondary" type="submit" value="검색" /> <input class="btn btn-outline-secondary" type="submit" value="검색" />
</div> </div>
</div> </div>
</div> </div>
<div class="row m-3 p-2 bg-white">
<table class="list-table"> <table class="table table-hover text-center">
<thead> <thead>
<tr><th colspan="5">지도사용 이력</th></tr>
<tr> <tr>
<th>위치</th> <th>위치</th>
<th>소속</th> <th>소속</th>
@ -59,7 +62,7 @@
</c:if> </c:if>
</tbody> </tbody>
</table> </table>
</div>
<div class="text-page"> <div class="text-page">
<form:hidden path="pageIndex" /></form:form> <form:hidden path="pageIndex" /></form:form>
<nav aria-label="Page navigation"> <nav aria-label="Page navigation">

View File

@ -7,22 +7,22 @@
<div class="section_content"> <div class="section_content">
<h1 class="h4 m-3">지도사용 요청</h1>
<form:form commandName="useRequestSearchVO" name="searchForm" action="/admin/request" method="get"> <form:form commandName="useRequestSearchVO" name="searchForm" action="/admin/request" method="get">
<input type="hidden" name="status" value="<c:out value="${useRequestSearchVO.status}" />" /> <input type="hidden" name="status" value="<c:out value="${useRequestSearchVO.status}" />" />
<div class="row justify-content-between bg-white mx-3 py-2">
<div class="search_div"> <div class="col-auto">
<div class="search_menu"> <ul class="nav nav-pills" role="tablist">
<ul class="nav nav-pills" role="tablist"> <li role="presentation" class="nav-item" style="margin-left: 16px"><a class="nav-link ${empty useRequestSearchVO.status?'active':''}" href="/admin/request">전체</a></li>
<li role="presentation" class="nav-item"><a class="nav-link ${empty useRequestSearchVO.status?'active':''}" href="/admin/request">전체</a></li> <li role="presentation" class="nav-item"><a class="nav-link ${useRequestSearchVO.status eq '0'?'active':''}" href="/admin/request?status=0">승인</a></li>
<li role="presentation" class="nav-item"><a class="nav-link ${useRequestSearchVO.status eq '0'?'active':''}" href="/admin/request?status=0">승인</a></li> <li role="presentation" class="nav-item"><a class="nav-link ${useRequestSearchVO.status eq '-1'?'active':''}" href="/admin/request?status=-1">반려</a></li>
<li role="presentation" class="nav-item"><a class="nav-link ${useRequestSearchVO.status eq '-1'?'active':''}" href="/admin/request?status=-1">반려</a></li> <li role="presentation" class="nav-item"><a class="nav-link ${useRequestSearchVO.status eq '99'?'active':''}" href="/admin/request?status=99">승인대기<span class="badge"><c:out value="${statusCnt}" /></span></a></li>
<li role="presentation" class="nav-item"><a class="nav-link ${useRequestSearchVO.status eq '99'?'active':''}" href="/admin/request?status=99">승인대기<span class="badge"><c:out value="${statusCnt}" /></span></a></li> </ul>
</ul> </div>
</div>
<div class="d-flex justify-content-end"> <div class="col-auto row">
<div class="row">
<div class="col-auto"> <div class="col-auto">
<select class="form-select" name="searchCondition"> <select class="form-select" name="searchCondition">
<option <c:if test="${useRequestSearchVO.searchCondition eq 'all'}"><c:out value="selected" /></c:if> value="all">통합검색</option> <option <c:if test="${useRequestSearchVO.searchCondition eq 'all'}"><c:out value="selected" /></c:if> value="all">통합검색</option>
@ -31,6 +31,7 @@
<option <c:if test="${useRequestSearchVO.searchCondition eq 'company'}"><c:out value="selected" /></c:if> value="company">소속</option> <option <c:if test="${useRequestSearchVO.searchCondition eq 'company'}"><c:out value="selected" /></c:if> value="company">소속</option>
</select> </select>
</div> </div>
<div class="col-auto"> <div class="col-auto">
<input type="text" class="form-control" name="searchKeyword" value="${userSearchVO.searchKeyword}" /> <input type="text" class="form-control" name="searchKeyword" value="${userSearchVO.searchKeyword}" />
</div> </div>
@ -43,10 +44,9 @@
<div class="row m-3 p-2 bg-white">
<table class="list-table"> <table class="table table-hover text-center">
<thead> <thead>
<tr><th colspan="6" >지도사용 요청</th></tr>
<tr> <tr>
<th>번호</th> <th>번호</th>
<th>작업명</th> <th>작업명</th>
@ -61,7 +61,7 @@
<c:forEach var="item" items="${useRequestList}" varStatus="idx"> <c:forEach var="item" items="${useRequestList}" varStatus="idx">
<tr> <tr>
<td><c:out value="${item.idx}" /></td> <td><c:out value="${item.idx}" /></td>
<td class="title-td"><a href="/admin/request/<c:out value='${item.idx}' />"><c:out value="${item.title}" /></a></td> <td><a href="/admin/request/<c:out value='${item.idx}' />"><c:out value="${item.title}" /></a></td>
<td><c:out value="${item.company}" /></td> <td><c:out value="${item.company}" /></td>
<td><c:out value="${item.name}" /></td> <td><c:out value="${item.name}" /></td>
<td class="td_date"><c:out value="${item.r_date}" /></td> <td class="td_date"><c:out value="${item.r_date}" /></td>
@ -80,7 +80,7 @@
</c:if> </c:if>
</tbody> </tbody>
</table> </table>
</div>
<div class="text-page"> <div class="text-page">
<form:hidden path="pageIndex" /></form:form> <form:hidden path="pageIndex" /></form:form>
<nav aria-label="Page navigation"> <nav aria-label="Page navigation">

View File

@ -14,19 +14,21 @@
<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"/>
<table class="detail_table"> <table class="table table-hover text-center">
<thead> <thead>
<tr><th colspan="8">담당자</th></tr> <h5 class="">&nbsp;담당자</h5>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<th>소속</th> <th>소속</th>
<td class="text-center"><c:out value='${userVO.company}' /></td> <td class="text-center"><c:out value='${userVO.company}' /></td>
<th>담당자</th> <th>이름</th>
<td class="text-center"><c:out value='${userVO.name}' /></td> <td class="text-center"><c:out value='${userVO.name}' /></td>
<th>연락처</th> <th>연락처</th>
<td class="text-center"><c:out value='${userVO.phonenum}' /></td> <td class="text-center"><c:out value='${userVO.phonenum}' /></td>
@ -41,12 +43,15 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div>
<table class="detail_table">
<div class="row justify-content-between bg-white mx-3 py-2">
<table class="table table-hover text-center">
<thead> <thead>
<tr><th colspan="5">지도 사용 요청</th></tr> <h3 class="h4 m-3">지도사용 요청</h3>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<th colspan="2">작업명</th> <th colspan="2">작업명</th>
<td><c:out value='${useRequestVO.title}' /></td> <td><c:out value='${useRequestVO.title}' /></td>
@ -125,12 +130,17 @@
</div> </div>
</td> </td>
</tr> </tr>
<tr>
<th colspan="2">요청 내용</th>
<td><c:out value='${useRequestVO.user_msg}' /></td> <tr>
</tr> <th colspan="2">요청 내용</th>
<td><c:out value='${useRequestVO.user_msg}' /></td>
</tr>
</tbody> </tbody>
</table> </table>
</div>
<c:choose> <c:choose>
<c:when test="${useRequestVO.status eq '99'}"> <c:when test="${useRequestVO.status eq '99'}">
@ -145,15 +155,23 @@
</tbody> </tbody>
</table> </table>
<input type="hidden" name="status" id="status" /> <input type="hidden" name="status" id="status" />
<div class="section_btn">
<p class="search_p1">
<input class="btn btn-primary" type="button" value="목록" onclick="location.href='/admin/request'" />
</p>
<p class="search_p2">
<input class="btn btn-danger" type="button" value="거절" onclick="confirmReqBtn('-1'); return false;" />
<input class="btn btn-success" type="button" value="승인" onclick="confirmReqBtn('0'); return false;" />
</p>
</div> </div>
<div class="row justify-content-between bg-white mx-3 py-2">
<div class="section_btn">
<p class="search_p1">
<input class="btn btn-primary" type="button" value="목록" onclick="location.href='/admin/request'" />
</p>
<p class="search_p2">
<input class="btn btn-danger" type="button" value="거절" onclick="confirmReqBtn('-1'); return false;" />
<input class="btn btn-success" type="button" value="승인" onclick="confirmReqBtn('0'); return false;" />
</p>
</div>
</div>
</c:when> </c:when>
<c:otherwise> <c:otherwise>
<table class="detail_table"> <table class="detail_table">
@ -164,14 +182,15 @@
</tr> </tr>
</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'" />
</p> </p>
</div> </div>
</c:otherwise> </c:otherwise>
</c:choose> </c:choose>
</div>
</form:form> </form:form>

View File

@ -18,17 +18,19 @@
<!-- <p>현장 지원 시스템</p> --> <!-- <p>현장 지원 시스템</p> -->
</div> </div>
<div class="section_content"> <div class="section_content">
<h1 class="h4 m-3">회원관리</h1>
<form:form commandName="userSearchVO" name="searchForm" action="/admin/userInfo" method="get"> <form:form commandName="userSearchVO" name="searchForm" action="/admin/userInfo" method="get">
<div class="row justify-content-between">
<div class="row justify-content-between bg-white mx-3 py-2"">
<div class="col-auto"> <div class="col-auto">
<ul class="nav nav-pills" role="tablist"> <ul class="nav nav-pills" role="tablist" style="margin-left: 16px">
<li role="presentation" class="nav-item"><a class="nav-link ${userSearchVO.auth eq '99'?'active':''}" href="/admin/userInfo?auth=99">승인대기<span class="badge"><c:out value='${standByCount}' /></span></a></li> <li role="presentation" class="nav-item"><a class="nav-link ${userSearchVO.auth eq '99'?'active':''}" href="/admin/userInfo?auth=99">승인대기<span class="badge"><c:out value='${standByCount}' /></span></a></li>
<li role="presentation" class="nav-item"><a class="nav-link ${empty userSearchVO.auth?'active':''}" href="/admin/userInfo">회원 관리</a></li> <li role="presentation" class="nav-item"><a class="nav-link ${empty userSearchVO.auth?'active':''}" href="/admin/userInfo">회원 관리</a></li>
</ul> </ul>
<input type="hidden" name="auth" value="${userSearchVO.auth}" /> <input type="hidden" name="auth" value="${userSearchVO.auth}" />
</div> </div>
<div class="col-auto">
<div class="row"> <div class="col-auto row">
<div class="col-auto"> <div class="col-auto">
<select class="form-select" name="searchCondition"> <select class="form-select" name="searchCondition">
<option <c:if test="${userSearchVO.searchCondition eq 'all'}">selected</c:if> value="all">통합검색</option> <option <c:if test="${userSearchVO.searchCondition eq 'all'}">selected</c:if> value="all">통합검색</option>
@ -38,45 +40,20 @@
<option <c:if test="${userSearchVO.searchCondition eq 'phonenum'}">selected</c:if> value="phonenum">전화번호</option> <option <c:if test="${userSearchVO.searchCondition eq 'phonenum'}">selected</c:if> value="phonenum">전화번호</option>
</select> </select>
</div> </div>
<div class="col-auto"> <div class="col-auto">
<input type="text" class="form-control" name="searchKeyword" value="${userSearchVO.searchKeyword}" /> <input type="text" class="form-control" name="searchKeyword" value="${userSearchVO.searchKeyword}" />
</div> </div>
<div class="col-auto"> <div class="col-auto">
<input class="btn btn-outline-secondary" type="submit" value="검색" /> <input class="btn btn-outline-secondary" type="submit" value="검색" />
</div> </div>
</div>
</div> </div>
</div> </div>
<%--<div class="search_div">
<div class="search_menu">
<ul class="nav nav-pills" role="tablist">
<li role="presentation" class="nav-item"><a class="nav-link ${userSearchVO.auth eq '99'?'active':''}" href="/admin/userInfo?auth=99">승인대기<span class="badge"><c:out value='${standByCount}' /></span></a></li>
<li role="presentation" class="nav-item"><a class="nav-link ${empty userSearchVO.auth?'active':''}" href="/admin/userInfo">회원 관리</a></li>
</ul>
<input type="hidden" name="auth" value="${userSearchVO.auth}" />
</div>
<div class="search_keyword"> <div class="row m-3 p-2 bg-white">
<select class="form-control search_selectbox" name="searchCondition"> <table class="table table-hover text-center">
<option <c:if test="${userSearchVO.searchCondition eq 'all'}">selected</c:if> value="all">통합검색</option>
<option <c:if test="${userSearchVO.searchCondition eq 'name'}">selected</c:if> value="name">이름</option>
<option <c:if test="${userSearchVO.searchCondition eq 'company'}">selected</c:if> value="company">소속</option>
<option <c:if test="${userSearchVO.searchCondition eq 'email'}">selected</c:if> value="email">이메일</option>
<option <c:if test="${userSearchVO.searchCondition eq 'phonenum'}">selected</c:if> value="phonenum">전화번호</option>
</select>
<input type="text" class="form-control search_inputbox" name="searchKeyword" value="${userSearchVO.searchKeyword}" />
<input class="btn btn-outline-secondary" type="submit" value="검색" />
</div>
</div>--%>
<table class="list-table">
<thead> <thead>
<tr><th colspan="7">회원 관리</th></tr>
<tr> <tr>
<th>아이디</th> <th>아이디</th>
<th>이름</th> <th>이름</th>
@ -122,7 +99,7 @@
</c:if> </c:if>
</tbody> </tbody>
</table> </table>
</div>
<div class="text-page"> <div class="text-page">
<form:hidden path="pageIndex" /> <form:hidden path="pageIndex" />
<nav aria-label="Page navigation"> <nav aria-label="Page navigation">

View File

@ -5,17 +5,15 @@
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> <%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<script src="../../../js/admin/userinfoView.js"></script> <script src="../../../js/admin/userinfoView.js"></script>
<div class="row justify-content-between bg-white mx-3 py-2">
<div class="section_content">
<form:form commandName="userVO" name="updateForm" id="updateForm" action="/admin/userUpdate" method="post"> <form:form commandName="userVO" name="updateForm" id="updateForm" action="/admin/userUpdate" method="post">
<div class="section_content">
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}" /> <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}" />
<input type="hidden" name="userid" value="${userVO.userid}" /> <input type="hidden" name="userid" value="${userVO.userid}" />
<div class="join_top"> <div class="join_top">
<h2><span class="glyphicon glyphicon-edit"></span> 회원 정보 수정</h2> <h2> <i class="bi bi-person-circle"></i>&nbsp;회원 정보 수정</h2>
</div> </div>
<table class="join_table"> <table class="join_table">
<tbody> <tbody>
@ -50,11 +48,12 @@
<tr> <tr>
<th>이메일</th> <th>이메일</th>
<td> <td>
<div> <div>
<input type="text" class="form-control" name="email" id="email" value="${userVO.email}" /> <input type="text" class="form-control" name="email" id="email" value="${userVO.email}" />
</div> </div>
</td> </td>
</tr> </tr>
<c:if test="${userVO.auth ne '99'}"> <c:if test="${userVO.auth ne '99'}">
<tr> <tr>
<th>권한</th> <th>권한</th>
@ -90,6 +89,6 @@
</c:choose> </c:choose>
</p> </p>
</div> </div>
</div>
</form:form> </form:form>
</div>

View File

@ -9,19 +9,23 @@
</div> </div>
<div class="section_content"> <div class="section_content">
<h1 class="h4 m-3">지도사용 요청</h1>
<form:form commandName="useRequestSearchVO" id="searchForm" name="searchForm" method="get" > <form:form commandName="useRequestSearchVO" id="searchForm" name="searchForm" method="get" >
<input type="hidden" name="id" /> <div class="row justify-content-between bg-white mx-3 py-2">
<table class="list-table"> <input type="hidden" name="id" />
<thead> <table class="table table-hover text-center">
<tr><th colspan="4">지도 사용 요청 목록</th></tr> <thead>
<tr> <tr>
<th>번호</th> <th>번호</th>
<th>작업명</th> <th>작업명</th>
<th>날짜</th> <th>날짜</th>
<th>상태</th> <th>상태</th>
</tr> </tr>
</thead> </thead>
<tbody>
<tbody>
<c:if test="${count >= 1}"> <c:if test="${count >= 1}">
<c:forEach var="item" items="${useRequestList}" varStatus="idx"> <c:forEach var="item" items="${useRequestList}" varStatus="idx">
<tr> <tr>
@ -43,6 +47,7 @@
</c:if> </c:if>
</tbody> </tbody>
</table> </table>
</div>
<div class="div_write"> <div class="div_write">
<p> <p>
<input class="btn btn-secondary" type="button" value="작성" onclick="location.href='/map/reqWrite'" /> <input class="btn btn-secondary" type="button" value="작성" onclick="location.href='/map/reqWrite'" />

View File

@ -181,9 +181,9 @@ a {
.fieldDataTable>thead>tr:first-child>th { .fieldDataTable>thead>tr:first-child>th {
border: 1px solid #ccc; border: 1px solid #ccc;
background-color: #337ab7; background-color: #ccc;
padding: 10px 5px; padding: 10px 5px;
text-align: left; text-align: center;
color: #fff; color: #fff;
} }
@ -591,8 +591,6 @@ a {
} }
.td_date{ .td_date{
text-align: center; text-align: center;
width:85px;
font-size:12px;
} }
.td_name{ .td_name{
@ -701,10 +699,12 @@ a {
.mapWrap{ .mapWrap{
width: 48%; width: 48%;
float:left; float:left;
} }
.map-title{ .map-title{
border-bottom: 1px solid #ccc; border-bottom: 1px solid #ccc;
background-color: #337ab7; background-color: #ccc;
padding: 10px 5px; padding: 10px 5px;
text-align: left; text-align: left;
color: #fff; color: #fff;