iot页面调试

This commit is contained in:
BianLzhaoMin 2024-08-05 18:10:34 +08:00
parent 34511e5972
commit dc8546d7c4
2 changed files with 211 additions and 163 deletions

View File

@ -1,180 +1,223 @@
<template> <template>
<div> <div>
<!-- 地图弹框 展示设备轨迹 --> <!-- 地图弹框 展示设备轨迹 -->
<el-dialog title="装备定位信息" :visible.sync="openMap" width="80%" :close-on-click-modal="false" @close="close"> <el-dialog
<!-- 表单 根据日期查询设备轨迹 --> title="装备定位信息"
<el-card shadow="hover"> :visible.sync="openMap"
<el-form :model="queryForm" inline> v-if="openMap"
<el-form-item label="查询日期"> width="80%"
<el-date-picker :close-on-click-modal="false"
v-model="queryForm.date" @close="close"
type="daterange" >
range-separator="至" <!-- 表单 根据日期查询设备轨迹 -->
start-placeholder="请选择开始日期" <el-card shadow="hover">
end-placeholder="请选择结束日期" <el-form :model="queryForm" inline>
style="width: 330px" <el-form-item label="查询日期">
value-format="yyyy-MM-dd" <el-date-picker
format="yyyy-MM-dd" v-model="queryForm.date"
></el-date-picker> type="daterange"
</el-form-item> range-separator="至"
<el-form-item> start-placeholder="请选择开始日期"
<el-button type="primary" size="small" @click="handleQuery">轨迹查询</el-button> end-placeholder="请选择结束日期"
</el-form-item> style="width: 330px"
</el-form> value-format="yyyy-MM-dd"
<div> format="yyyy-MM-dd"
<h2>{{ equipment }}</h2> ></el-date-picker>
<div class="equipment">定位设备编号: {{ equipmentNumber }}</div> </el-form-item>
<div class="equipment">{{ engineering }}工程</div> <el-form-item>
</div> <el-button
type="primary"
size="small"
@click="handleQuery"
>轨迹查询</el-button
>
</el-form-item>
</el-form>
<div>
<h2>{{ equipment }}</h2>
<div class="equipment"
>定位设备编号: {{ equipmentNumber }}</div
>
<div class="equipment">{{ engineering }}工程</div>
</div>
<!-- 地图 --> <!-- 地图 -->
<div v-if="openMap" id="container" style="height: 500px; background-color: #bfc; margin-top: 13px"></div> <div
</el-card> v-if="openMap"
</el-dialog> id="container"
</div> style="
height: 500px;
background-color: #bfc;
margin-top: 13px;
"
></div>
</el-card>
</el-dialog>
</div>
</template> </template>
<script> <script>
export default { export default {
name: 'MapDialog', name: 'MapDialog',
data() { data() {
return { return {
openMap: false, // openMap: false, //
queryForm: { queryForm: {
date: '', date: '',
}, },
equipment: '', // equipment: '', //
equipmentNumber: 'H906L', // equipmentNumber: 'H906L', //
engineering: '大禹治水', // engineering: '大禹治水', //
map: null, map: null,
// //
linePointList: [ linePointList: [
{ {
lng: 116.297611, lng: 116.297611,
lat: 40.047363, lat: 40.047363,
}, },
{ {
lng: 116.302839, lng: 116.302839,
lat: 40.048219, lat: 40.048219,
}, },
{ {
lng: 116.308301, lng: 116.308301,
lat: 40.050566, lat: 40.050566,
}, },
{ {
lng: 116.305732, lng: 116.305732,
lat: 40.054957, lat: 40.054957,
}, },
{ {
lng: 116.304754, lng: 116.304754,
lat: 40.057953, lat: 40.057953,
}, },
{ {
lng: 116.306487, lng: 116.306487,
lat: 40.058312, lat: 40.058312,
}, },
{ {
lng: 116.307223, lng: 116.307223,
lat: 40.056379, lat: 40.056379,
}, },
], ],
}
},
mounted() {
this.getEquipmentInfo()
},
methods: {
async handleQuery() {
console.log('🚀 ~ handleQuery ~ 查询:', this.queryForm.date)
const params = {
date: this.queryForm.date,
}
this.getEquipmentInfo(params)
//
this.map.clearOverlays()
this.map = null
await this.initMap()
},
openMapDialog(val) {
this.openMap = val
this.initMap()
},
close() {
this.openMap = false
this.$emit('getList')
},
//
getEquipmentInfo(params = {}) {
console.log('🚀 ~ getEquipmentInfo ~ 获取装备信息', params)
// (params).then(res => {
// this.equipment = res.equipment
// this.equipmentNumber = res.equipmentNumber
// this.engineering = res.engineering
// this.linePointList = res.linePointList
// })
},
//
initMap() {
this.$nextTick(() => {
this.map = new BMapGL.Map('container') //
let point = new BMapGL.Point(117.14, 31.87) //
console.log('🚀 ~ this.$nextTick ~ point:', point)
this.map.centerAndZoom(point, 15) //
this.map.enableScrollWheelZoom(true) //
//
let pointList = []
if (this.linePointList.length === 0) return
for (var i = 0; i < this.linePointList.length; i++) {
pointList.push(new BMapGL.Point(this.linePointList[i].lng, this.linePointList[i].lat))
} }
let polyline = new BMapGL.Polyline(pointList)
// 线
polyline.setStrokeColor('#EA3323') // 线 #EA3323
// polyline.setStrokeWeight(2) // 线
let trackAni = new BMapGLLib.TrackAnimation(this.map, polyline, {
overallView: true, //
tilt: 30, // 55
duration: 5000, // 10000ms
delay: 2000, // 0ms
})
trackAni.start()
//
this.triggerMovement()
})
}, },
// mounted() {
addStartEndMarkers(startLatLng, endLatLng) { this.getEquipmentInfo()
let startIcon = new BMapGL.Icon(require('/src/assets/images/startIcon.png'), new BMapGL.Size(32, 32))
let startMarker = new BMapGL.Marker(startLatLng, { icon: startIcon })
this.map.addOverlay(startMarker)
let endIcon = new BMapGL.Icon(require('/src/assets/images/endIcon.png'), new BMapGL.Size(32, 32))
let endMarker = new BMapGL.Marker(endLatLng, { icon: endIcon })
this.map.addOverlay(endMarker)
}, },
//
triggerMovement() {
//
let startLatLng = new BMapGL.Point(this.linePointList[0].lng, this.linePointList[0].lat)
let endLatLng = new BMapGL.Point(
this.linePointList[this.linePointList.length - 1].lng,
this.linePointList[this.linePointList.length - 1].lat
)
// methods: {
this.addStartEndMarkers(startLatLng, endLatLng) async handleQuery() {
console.log('🚀 ~ handleQuery ~ 查询:', this.queryForm.date)
const params = {
date: this.queryForm.date,
}
this.getEquipmentInfo(params)
//
this.map.clearOverlays()
this.map = null
await this.initMap()
},
openMapDialog(val) {
this.openMap = val
this.initMap()
},
close() {
this.openMap = false
this.$emit('getList')
},
//
getEquipmentInfo(params = {}) {
console.log('🚀 ~ getEquipmentInfo ~ 获取装备信息', params)
// (params).then(res => {
// this.equipment = res.equipment
// this.equipmentNumber = res.equipmentNumber
// this.engineering = res.engineering
// this.linePointList = res.linePointList
// })
},
//
initMap() {
this.$nextTick(() => {
this.map = new BMapGL.Map('container') //
let point = new BMapGL.Point(117.14, 31.87) //
console.log('🚀 ~ this.$nextTick ~ point:', point)
this.map.centerAndZoom(point, 15) //
this.map.enableScrollWheelZoom(true) //
//
let pointList = []
if (this.linePointList.length === 0) return
for (var i = 0; i < this.linePointList.length; i++) {
pointList.push(
new BMapGL.Point(
this.linePointList[i].lng,
this.linePointList[i].lat,
),
)
}
let polyline = new BMapGL.Polyline(pointList)
// 线
polyline.setStrokeColor('#EA3323') // 线 #EA3323
// polyline.setStrokeWeight(2) // 线
let trackAni = new BMapGLLib.TrackAnimation(
this.map,
polyline,
{
overallView: true, //
tilt: 30, // 55
duration: 5000, // 10000ms
delay: 2000, // 0ms
},
)
trackAni.start()
//
this.triggerMovement()
})
},
//
addStartEndMarkers(startLatLng, endLatLng) {
let startIcon = new BMapGL.Icon(
require('/src/assets/images/startIcon.png'),
new BMapGL.Size(32, 32),
)
let startMarker = new BMapGL.Marker(startLatLng, {
icon: startIcon,
})
this.map.addOverlay(startMarker)
let endIcon = new BMapGL.Icon(
require('/src/assets/images/endIcon.png'),
new BMapGL.Size(32, 32),
)
let endMarker = new BMapGL.Marker(endLatLng, { icon: endIcon })
this.map.addOverlay(endMarker)
},
//
triggerMovement() {
//
let startLatLng = new BMapGL.Point(
this.linePointList[0].lng,
this.linePointList[0].lat,
)
let endLatLng = new BMapGL.Point(
this.linePointList[this.linePointList.length - 1].lng,
this.linePointList[this.linePointList.length - 1].lat,
)
//
this.addStartEndMarkers(startLatLng, endLatLng)
},
}, },
},
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.equipment { .equipment {
font-weight: 600; font-weight: 600;
font-size: 15px; font-size: 15px;
margin-top: 10px; margin-top: 10px;
} }
</style> </style>

View File

@ -232,7 +232,12 @@
align="center" align="center"
prop="ownHouseName" prop="ownHouseName"
> >
<i class="el-icon-location location-icon" @click="handleMap" /> <template slot-scope="{ row }">
<i
class="el-icon-location location-icon"
@click="handleMap(row)"
/>
</template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="操作" label="操作"