smart-green-house-server-an.../html/record_of_operations_histor...

100 lines
2.5 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; */
height: 20px;
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/record_of_operations_history.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.oper_user_name;
td2.innerText = rowData.operation_detail;
td3.innerText = rowData.operation_time;
tr.append(td1, td2, td3);
greenTableBody.append(tr);
});
})
}
window.onload = function () {
loadBlackData();
}
</script>
</body>
</html>