bug修改。
This commit is contained in:
parent
6855e40251
commit
5b7a597b7d
|
@ -232,7 +232,7 @@ export default {
|
||||||
selectByAreaEvent(params).then((res) => {
|
selectByAreaEvent(params).then((res) => {
|
||||||
this.eventListData = res.data.data.events;
|
this.eventListData = res.data.data.events;
|
||||||
this.total = res.data.data.sum;
|
this.total = res.data.data.sum;
|
||||||
this.$parent.allListDataNum = res.data.data.sum;
|
// this.$parent.allListDataNum = res.data.data.sum;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
beforeCreate() {}, //生命周期 - 创建之前
|
beforeCreate() {}, //生命周期 - 创建之前
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
<div class="title">重点区域监控平台</div>
|
<div class="title">重点区域精细化管理</div>
|
||||||
<div></div>
|
<div></div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
@ -36,13 +36,13 @@
|
||||||
</el-autocomplete>
|
</el-autocomplete>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="eventNum">
|
<!-- <div class="eventNum">
|
||||||
累计事件数量(2022.05.25-至今)
|
累计事件数量(2022.05.25-至今)
|
||||||
<p>
|
<p>
|
||||||
<span>{{ allListDataNum }}</span
|
<span>{{ allListDataNum }}</span
|
||||||
>件
|
>件
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div> -->
|
||||||
|
|
||||||
<!-- 事件感知 -->
|
<!-- 事件感知 -->
|
||||||
<div class="complaintContent">
|
<div class="complaintContent">
|
||||||
|
@ -75,10 +75,10 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 热力图图例 -->
|
<!-- 热力图图例 -->
|
||||||
<div class="legend"></div>
|
<!-- <div class="legend"></div> -->
|
||||||
|
|
||||||
<!-- 时间轴 -->
|
<!-- 时间轴 -->
|
||||||
<div class="timerShaft">
|
<!-- <div class="timerShaft">
|
||||||
<HorizonTimeLine
|
<HorizonTimeLine
|
||||||
:timelineData="timelineData"
|
:timelineData="timelineData"
|
||||||
@timeId="timeIdData"
|
@timeId="timeIdData"
|
||||||
|
@ -86,7 +86,7 @@
|
||||||
@hotName="hotName"
|
@hotName="hotName"
|
||||||
/>
|
/>
|
||||||
<span>时</span>
|
<span>时</span>
|
||||||
</div>
|
</div> -->
|
||||||
<div class="changeLayer">
|
<div class="changeLayer">
|
||||||
<div class="title">地图显示</div>
|
<div class="title">地图显示</div>
|
||||||
<div class="change-btn-box">
|
<div class="change-btn-box">
|
||||||
|
@ -126,6 +126,7 @@
|
||||||
<el-radio label="all">全市</el-radio>
|
<el-radio label="all">全市</el-radio>
|
||||||
<el-radio label="local">本地</el-radio>
|
<el-radio label="local">本地</el-radio>
|
||||||
<el-radio label="noLocal">外地</el-radio>
|
<el-radio label="noLocal">外地</el-radio>
|
||||||
|
<el-radio label="clear">清除热力图</el-radio>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -480,6 +481,7 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
layerHandleChange(item) {
|
layerHandleChange(item) {
|
||||||
|
console.log("地图显示等",item);
|
||||||
if (this.changeLayerBtnGroup.indexOf(item) !== -1) {
|
if (this.changeLayerBtnGroup.indexOf(item) !== -1) {
|
||||||
switch (item) {
|
switch (item) {
|
||||||
case "AI事件":
|
case "AI事件":
|
||||||
|
@ -703,6 +705,11 @@ export default {
|
||||||
"thermodynamic"
|
"thermodynamic"
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
case "clear":
|
||||||
|
this.hiMapFun.removeLayerByLayerName("types");
|
||||||
|
this.hiMapFun.removeLayerByLayerName("thermodynamic");
|
||||||
|
this.thermodynamicPeopleType = "";
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
removeRoadCauseAnalysis() {
|
removeRoadCauseAnalysis() {
|
||||||
|
@ -768,7 +775,7 @@ export default {
|
||||||
font-family: 'Tensentype-ZhiHeiJ-W5';
|
font-family: 'Tensentype-ZhiHeiJ-W5';
|
||||||
}
|
}
|
||||||
.title::before {
|
.title::before {
|
||||||
content: '重点区域监控平台';
|
content: '重点区域精细化管理';
|
||||||
text-shadow: 0px 3px 10px rgba(0,0,0,.9);
|
text-shadow: 0px 3px 10px rgba(0,0,0,.9);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
|
|
Loading…
Reference in New Issue