IrisVega
65fe13478b
with '#' will be ignored, and an empty message aborts the commit. On branch main Your branch is up to date with 'RQteafactory-NodeJS/main'. Changes to be committed: modified: templates/sensor-1.html
20 lines
618 B
HTML
20 lines
618 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" >
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Title</title>
|
|
<link rel="stylesheet" href="../static/css/sensor-1.css">
|
|
</head>
|
|
<body>
|
|
<div class="container-top">温度数据表</div>
|
|
<div class="container-bottom">
|
|
<div class="container1" id="chart-container"></div>
|
|
</div>
|
|
<div class="bottom">
|
|
<div class="value" id="temperature">Loading...</div>
|
|
</div>
|
|
</body>
|
|
<script src="../static/js/sensor-1.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/echarts/dist/echarts.min.js"></script>
|
|
</html> |