From bba69a0ccdfe3dddab920aa0de16fb33c0f3693b Mon Sep 17 00:00:00 2001 From: guoshipeng <3194674006@qq.com> Date: Fri, 08 Sep 2023 09:37:01 +0800 Subject: [PATCH] fix:路段添加时间提示 --- src/views/list/road.vue | 43 +++++++++++++++++++++++++++++++++---------- 1 files changed, 33 insertions(+), 10 deletions(-) diff --git a/src/views/list/road.vue b/src/views/list/road.vue index 699d6bf..cc99953 100644 --- a/src/views/list/road.vue +++ b/src/views/list/road.vue @@ -2,17 +2,10 @@ <div style="display: flex; overflow: hidden"> <div class="left"> <div class="left-one"> - <a-range-picker - v-model="timevalue" - show-time - @ok="change1()" - valueFormat="yyyy-MM-DD HH:MM:SS" - style="width: 175px" - /> <a-select ref="select" v-model="carvalue" - style="width: 180px; margin-left: 10px" + style="width: 180px" placeholder="������������������" > <a-select-option @@ -22,6 +15,14 @@ >{{ item.name }}</a-select-option > </a-select> + <a-range-picker + v-model="timevalue" + show-time + @ok="change1()" + valueFormat="yyyy-MM-DD HH:MM:SS" + style="width: 175px; margin-left: 10px" + /> + <a-button type="primary" style="margin-left: 10px" @click="selectCar" >������</a-button > @@ -167,6 +168,7 @@ import axios from "axios"; import { jsonp } from 'vue-jsonp' import any = jasmine.any; +import { da } from "date-fns/locale"; @Component({ @@ -332,7 +334,6 @@ coordinateId:this.recordid, data:this.dataList }).then((res)=>{ - console.log(res); this.$message.success(res.data.message) this.upa='' this.dataList=[] @@ -417,6 +418,7 @@ private carDataList:any=[] private starttime:any='' private endtime:any='' + private InfoWindow = null private startstate:any='none' private setMarker(res) { const that=this @@ -440,11 +442,22 @@ bPoints.push(statePoint) that.marker[i] = new BMapGL.Marker(statePoint,{icon:myIcon}); that.marker[i].customData = {data: that.carDate[i].data,state: that.carDate[i].state}; + var infoWindow =''; + //that.marker[i].name = that.carDate[i].time; + that.marker[i].on('mouseover', function (e) { + infoWindow = new BMapGL.InfoWindow("������������:"+that.carDate[i].time); + that.map.openInfoWindow(infoWindow, statePoint); + }) + + that.marker[i].on('mouseout', function (e) { + that.map.closeInfoWindow(infoWindow, statePoint); + }) + // that.marker.setTitle(that.carDate[i].time); + //������������������marker that.map.addOverlay(that.marker[i]); // if(that.check===false){ that.marker[i].addEventListener("click",function(){ - console.log(that.carDate[i].data,'that.carDate[i].data'); switch(that.carDate[i].state){ case '1': that.marker[i].setIcon(new BMapGL.Icon(require("@/assets/fb259ce2e368f6853a58b91d6f6b293.png"), new BMapGL.Size(50, 50) @@ -486,6 +499,7 @@ // } } + for (let i = 0; i < that.carDataList.length; i++) { // console.log(that.carDataList[i],'that.carDataList[i]'); //������������point @@ -539,6 +553,15 @@ } } } + // private showInfoOver(data){ + // // alert(data); + + // } + + + + + private setZoom(bPoints) { var view = this.map.getViewport(eval(bPoints)); var mapZoom = view.zoom; -- Gitblit v1.8.0