+
-
지도 정보
-
-
-
-
+
+
작성자 정보
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
- 수집
-
-
- 검증실패
-
-
- 검증성공
-
-
- 반영실패
-
-
- 반영
-
-
-
-
-
-
-
-
-
-
+
+
+
지도 정보
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 수집
+
+
+ 검증실패
+
+
+ 검증성공
+
+
+ 반영실패
+
+
+ 반영
+
+
+
+
+
+
+
+
+
+
+
-
-
+
--%>
diff --git a/src/main/webapp/css/style.css b/src/main/webapp/css/style.css
index 32629ac..60c7695 100644
--- a/src/main/webapp/css/style.css
+++ b/src/main/webapp/css/style.css
@@ -188,41 +188,10 @@ a {
text-align: center;
}
-
-.fieldDataTable {
- width: 100%;
- box-sizing: border-box;
-
-}
-
-.fieldDataTable > thead > tr:first-child > th {
- border: 1px solid #ccc;
- background-color: #ccc;
- padding: 10px 5px;
- text-align: center;
- color: #fff;
-}
-
-.fieldDataTable > tbody > tr > th {
- background-color: #f1f1f1;
- border: 1px solid #ccc;
- text-align: center;
-}
-
-.fieldDataTable > tbody > tr > td {
- padding: 5px 5px;
- border: 1px solid #ccc;
- text-align: center;
- width: 170px;
- word-break: break-all;
-}
-
-.fieldDataTable > tbody > tr:last-child > th {
- border-bottom: 0px;
-}
-
-.fieldDataTable > tbody > tr:last-child > td {
- border-bottom: 0px;
+#fieldDataDiv{
+ height: 400px;
+ overflow-y: auto;
+ overflow-x: hidden;
}
.fieldDataPaging {
@@ -510,7 +479,7 @@ a {
.map {
width: 100%;
- height: 450px;
+ height: 400px;
float: left;
border: 1px solid #ccc;
}
diff --git a/src/main/webapp/js/admin/fieldData.js b/src/main/webapp/js/admin/fieldData.js
index cef132b..f3fd0ae 100644
--- a/src/main/webapp/js/admin/fieldData.js
+++ b/src/main/webapp/js/admin/fieldData.js
@@ -55,6 +55,16 @@ $(document).on("click", ".statusTab", function () {
chkBox.checked = !chkBox.checked;
$("[name='searchForm']").submit();
})
+$(document).on('click', '#collectionInfoBtn', function (){
+ const btn = $(this);
+ if(btn.val()==="수집 정보 확인"){
+ $(".collectionInfo").show();
+ btn.val("감추기")
+ }else{
+ $(".collectionInfo").hide();
+ btn.val("수집 정보 확인")
+ }
+})
function fn_link_page(pageNo) {
document.searchForm.pageIndex.value = pageNo;
@@ -121,12 +131,12 @@ function makePropTable(idx) {
var tags = "";
for (var i in field_data[idx].prop) {
num++;
- if (num % 2 == 0) {
- tags += "
" + i + " | " + numberFormatter(field_data[idx].prop[i], 2) + " | ";
- } else {
- tags += "| " + i + " | " + numberFormatter(field_data[idx].prop[i],2) + " | ";
- // tags += "
|---|
| " + i + " | " + field_data[idx].prop[i] + " | ";
- }
+ // if (num % 2 == 0) {
+ // tags += "" + i + " | " + numberFormatter(field_data[idx].prop[i], 2) + " |
";
+ // } else {
+ // tags += "| " + i + " | " + numberFormatter(field_data[idx].prop[i],2) + " | ";
+ // }
+ tags += "
|---|
| " + i + " | " + numberFormatter(field_data[idx].prop[i],2) + " |
";
}
$("#fieldDataBody").append(tags);