Commit 2a19b651 authored by 纪泽龙's avatar 纪泽龙

Merge branch 'develop_jzl'

parents beb3e59d 629fd6b3
......@@ -112,6 +112,10 @@ class gaodeMap {
this.view.drawerOpacity = true;
}
}
// 每次地图移动结束,就让地图可以缩放
let options = this.myMap.getStatus();
options.scrollWheel = true;
this.myMap.setStatus(options);
});
this.districtBoundaries();
......@@ -587,7 +591,10 @@ class gaodeMap {
// 当选择的是新建的时候,线是点不了的
if (this.lineType == 1 || this.view.targetNum == 1) return;
if((this.view.targetNum==2||this.view.targetNum==3)&&e.type=="mouseover"){
if (
(this.view.targetNum == 2 || this.view.targetNum == 3) &&
e.type == "mouseover"
) {
this.polyLinesColorClear(polyline);
}
// 上方导航的高
......
......@@ -28,9 +28,10 @@
style="width: 100%"
height="170"
>
<el-table-column prop="deviceCode" label="编号" width="100">
<el-table-column prop="deviceCode" label="设备编号" width="100">
</el-table-column>
<el-table-column prop="deviceName" label="名称" width="">
<el-table-column prop="deviceName" label="设备名称" width="">
</el-table-column>
<el-table-column prop="alarmType" label="报警类型" width="80">
</el-table-column>
......
......@@ -603,8 +603,9 @@ export default {
item;
// 获取polyLine
const device = this.gaoMap.markers.filter((item) => {
const id = item.getExtData().deviceId;
return deviceId == id;
const { deviceId: id, troubleId } = item.getExtData();
// 因为隐患也有 deviceId,为了防止隐患直接遍成报警状态,所以要排除隐患,没有troubleId的就不是隐患
return !troubleId && deviceId == id;
})[0];
if (device) {
const options = device.getExtData();
......@@ -1636,7 +1637,6 @@ input[type="radio"] {
color: #053b6a;
font-weight: 600;
}
}
.deviceList {
cursor: pointer;
......@@ -1667,7 +1667,6 @@ input[type="radio"] {
white-space: nowrap;
// border-right: 1px solid #cccccc;
}
}
.no {
width: 25px;
......@@ -1677,7 +1676,7 @@ input[type="radio"] {
// border-right: none;
flex: 1;
text-align: center;
margin-left:10px;
margin-left: 10px;
}
.code {
width: 100px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment