|
|
|
@ -1,10 +1,10 @@
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
|
|
|
|
<html lang="en" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro" xmlns:th="http://www.thymeleaf.org">
|
|
|
|
|
<head>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
|
|
|
<title>传感器汇总</title>
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
<link th:href="@{favicon.ico}" rel="shortcut icon"/>
|
|
|
|
|
<meta content="IE=edge" http-equiv="X-UA-Compatible">
|
|
|
|
|
<link rel="shortcut icon" th:href="@{favicon.ico}"/>
|
|
|
|
|
<!--<link rel="stylesheet" th:href="@{/css/lot-ui/bootstrap.min.css}"/>-->
|
|
|
|
|
<link rel="stylesheet" th:href="@{/css/lot-ui/bootstrap.min.css}"/>
|
|
|
|
|
<link rel="stylesheet" th:href="@{/css/lot-ui/bootstrap-table.css}"/>
|
|
|
|
@ -18,26 +18,29 @@
|
|
|
|
|
</style>
|
|
|
|
|
<body>
|
|
|
|
|
<!--传感器类型-->
|
|
|
|
|
<iframe id="sensorType" name="a_iframe" width="100%" height="100%" frameborder="1" align="middle"
|
|
|
|
|
scrolling="auto" src="about:blank" style="overflow-x: hidden;
|
|
|
|
|
overflow-y: scroll;">
|
|
|
|
|
<iframe align="middle" frameborder="1" height="100%" id="sensorType" name="a_iframe" scrolling="auto"
|
|
|
|
|
src="about:blank" style="overflow-x: hidden;
|
|
|
|
|
overflow-y: scroll;" width="100%">
|
|
|
|
|
</iframe>
|
|
|
|
|
|
|
|
|
|
<!-- 搜索框 -->
|
|
|
|
|
<div class="sensorHistoryData searchBox" style="height:6%;top: 3%">
|
|
|
|
|
<form action="#" class="search-form">
|
|
|
|
|
<input id="sensorTypeId" type="hidden" name="sensorTypeId">
|
|
|
|
|
<input id="sensorTypeId" name="sensorTypeId" type="hidden">
|
|
|
|
|
<div style="width: 90%;height: 100%;border: 0px solid red;">
|
|
|
|
|
<label class="search-label" style="padding-left: 0%;">监测位置:</label>
|
|
|
|
|
<input type="text" class="form-control" onkeydown="onSearchByMonitorLocation(this)" id="monitorLocation"
|
|
|
|
|
name="monitorLocation" placeholder="请输入监测位置">
|
|
|
|
|
<input class="form-control" id="monitorLocation" name="monitorLocation"
|
|
|
|
|
onkeydown="onSearchByMonitorLocation(this)"
|
|
|
|
|
placeholder="请输入监测位置" type="text">
|
|
|
|
|
|
|
|
|
|
<label class="search-label">传感器编号:</label>
|
|
|
|
|
<input type="text" class="form-control" onkeydown="onSearchBySensorId(this)" id="sensorId" name="sensorId"
|
|
|
|
|
placeholder="请输入传感器编号">
|
|
|
|
|
<input class="form-control" id="sensorId" name="sensorId" onkeydown="onSearchBySensorId(this)"
|
|
|
|
|
placeholder="请输入传感器编号"
|
|
|
|
|
type="text">
|
|
|
|
|
|
|
|
|
|
<label class="search-label">时间:</label>
|
|
|
|
|
<input type="text" class="form-control" onkeydown="onSearchByCollectTime(this)" id="collectTime" name="collectTime" placeholder="请输入时间">
|
|
|
|
|
<input class="form-control" id="collectTime" name="collectTime" onkeydown="onSearchByCollectTime(this)"
|
|
|
|
|
placeholder="请输入时间" type="text" style="width:250px">
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
@ -63,6 +66,7 @@
|
|
|
|
|
laydate.render({
|
|
|
|
|
elem: '#collectTime',
|
|
|
|
|
type: 'datetime',
|
|
|
|
|
range: true,
|
|
|
|
|
trigger: 'click',
|
|
|
|
|
done: (value) => {
|
|
|
|
|
onSearchByCollectTime(document.getElementById("collectTime"));
|
|
|
|
|