From c162a3ab239c5c2616143d9c02afad9f17876b2d Mon Sep 17 00:00:00 2001 From: ZhuDongming <773644075@qq.com> Date: Tue, 13 Aug 2019 11:04:03 +0800 Subject: [PATCH] 修改无人机接口查询起始时间和结束时间为必填项 --- src/main/webapp/view/uavTrajectory.jsp | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/main/webapp/view/uavTrajectory.jsp b/src/main/webapp/view/uavTrajectory.jsp index 80e4004..64b7d2c 100644 --- a/src/main/webapp/view/uavTrajectory.jsp +++ b/src/main/webapp/view/uavTrajectory.jsp @@ -242,6 +242,7 @@ if (distance <= 1.9) { if (coincidentPoints.indexOf(i) == -1) { coincidentPoints.push(i); + winfowText +='<p id="' + i + '" onclick="openInfo(this)" onmousemove="red(this.id)" onmouseout="black(this.id)">' + "���������" + sensorInfo[i].������ + "</p>"; } coincidentPoints.push(j); count++; @@ -252,7 +253,7 @@ } if (coincidentPoints.indexOf(i) > -1) { - winfowText = '<p id="' + i + '" onclick="openInfo(this)" onmousemove="red(this.id)" onmouseout="black(this.id)">' + "���������" + sensorInfo[i].������ + "</p>" + winfowText + "</div>"; + winfowText = winfowText + "</div>"; } else { for (var prop in sensorInfo[i]) { if (sensorInfo[i].hasOwnProperty(prop)) { -- Gitblit v1.8.0