|
@@ -70,29 +70,41 @@ export default {
|
|
|
// },
|
|
|
// { distance: 10 }
|
|
|
// )
|
|
|
-
|
|
|
+ import {onePjylPortLocation,oneDjldPortLocation} from "@/utils/map/WaterPassenger"
|
|
|
+ import {clearMap} from "@/utils/map/ArcgisUtil"
|
|
|
function handleClick(item) {
|
|
|
+ clearMap()
|
|
|
let position_type; let position_name;
|
|
|
+ let datas={
|
|
|
+ portName: item.pierName,
|
|
|
+ mapx:item.pierPoints[0].mapx,
|
|
|
+ mapy:item.pierPoints[0].mapy
|
|
|
+ }
|
|
|
switch(props.listTitle) {
|
|
|
case '码头信息':
|
|
|
position_type = 'lymt'
|
|
|
position_name = item.pierName
|
|
|
+
|
|
|
+ onePjylPortLocation(datas)
|
|
|
break
|
|
|
case '渡口信息':
|
|
|
position_type = 'mt'
|
|
|
position_name = item.pierName
|
|
|
+ oneDjldPortLocation(datas)
|
|
|
break
|
|
|
default:
|
|
|
position_type = 'boat'
|
|
|
position_name = item.mmsi
|
|
|
}
|
|
|
- ueCallPositionByType(position_type, position_name)
|
|
|
+
|
|
|
+ // ueCallPositionByType(position_type, position_name)
|
|
|
// bus.emit('ueRec_BoatClick', { mmsi: item.mmsi, where: 'HPJ'})
|
|
|
}
|
|
|
|
|
|
const emit = defineEmits(['closeBoatList'])
|
|
|
|
|
|
function handleClose() {
|
|
|
+ clearMap()
|
|
|
emit('closeBoatList')
|
|
|
}
|
|
|
|