100 lines
2.4 KiB
HTML
100 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>温湿度</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
.tablecenter {
|
|
display: flex;
|
|
/* justify-content: center; */
|
|
/* align-items: center; */
|
|
height: 100vh;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
/* width: 700px; */
|
|
background-color: #fff;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 10px;
|
|
text-align: center;
|
|
border: 1px solid #ccc;
|
|
height: 10px;
|
|
}
|
|
|
|
th {
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
tr{
|
|
height: 10px;
|
|
}
|
|
|
|
tbody tr:nth-child(even) {
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
tbody tr:hover {
|
|
background-color: #e0e0e0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="tablecenter">
|
|
<table id="arpTable">
|
|
<thead>
|
|
<th>温度</th>
|
|
<th>湿度</th>
|
|
<th>时间</th>
|
|
</thead>
|
|
<tbody id="greenTableBody">
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<script>
|
|
function loadBlackData() {
|
|
var blackData;
|
|
fetch("../cgi-bin/green_house_info_show.cgi")
|
|
.then(resp => resp.json())
|
|
.then(data => {
|
|
blackData = data;
|
|
greenTableBody.innerHTML = "";
|
|
data.forEach(rowData => {
|
|
let tr = document.createElement("tr");
|
|
let td1 = document.createElement("td");
|
|
let td2 = document.createElement("td");
|
|
let td3 = document.createElement("td");
|
|
|
|
td1.innerText = rowData.temperature;
|
|
td2.innerText = rowData.humidity;
|
|
td3.innerText = rowData.th_date_time;
|
|
|
|
tr.append(td1, td2, td3);
|
|
greenTableBody.append(tr);
|
|
});
|
|
})
|
|
}
|
|
|
|
window.onload = function () {
|
|
loadBlackData();
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|