|
@@ -40,9 +40,12 @@ export default {
|
|
|
// import { useInfiniteScroll } from '@vueuse/core'
|
|
|
import { ueCallPositionByType } from '@/utils/UIInteractions'
|
|
|
import bus from '@/utils/bus';
|
|
|
-
|
|
|
+ import { ElMessage } from 'element-plus'
|
|
|
+ import 'element-plus/es/components/message/style/css'
|
|
|
const props = defineProps(['list-data', 'list-title'])
|
|
|
|
|
|
+
|
|
|
+ import {locationBoat} from "@/utils/map/Boat";
|
|
|
// const listSlice = reactive({value: []})
|
|
|
|
|
|
// onMounted(() => {
|
|
@@ -73,28 +76,40 @@ export default {
|
|
|
import {onePjylPortLocation,oneDjldPortLocation} from "@/utils/map/WaterPassenger"
|
|
|
import {clearMap} from "@/utils/map/ArcgisUtil"
|
|
|
function handleClick(item) {
|
|
|
- clearMap()
|
|
|
+ clearMap({is_draw: true, is_search:true, layers: ['sketchLayer','bufferLayer','tempLayer','boatPathLayer']})
|
|
|
let position_type; let position_name;
|
|
|
- let datas={
|
|
|
- portName: item.pierName,
|
|
|
- mapx:item.pierPoints[0].mapx,
|
|
|
- mapy:item.pierPoints[0].mapy
|
|
|
+ let datas={}
|
|
|
+ if (props.listTitle!='游船信息')
|
|
|
+ {
|
|
|
+ if (item.pierPoints[0]==undefined)
|
|
|
+ {
|
|
|
+ ElMessage.warning('未找到定位点')
|
|
|
+ }
|
|
|
+ datas={
|
|
|
+ portName: item.pierName,
|
|
|
+ mapx: item.pierPoints[0][0].x,
|
|
|
+ mapy: item.pierPoints[0][0].y
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
switch(props.listTitle) {
|
|
|
case '码头信息':
|
|
|
position_type = 'lymt'
|
|
|
position_name = item.pierName
|
|
|
-
|
|
|
- onePjylPortLocation(datas)
|
|
|
+ console.log( '码头信息:'+datas.portName+'位置:x:'+datas.mapx+' y:'+datas.mapy+''+JSON.stringify(item))
|
|
|
+ onePjylPortLocation(datas,true)
|
|
|
break
|
|
|
case '渡口信息':
|
|
|
position_type = 'mt'
|
|
|
position_name = item.pierName
|
|
|
- oneDjldPortLocation(datas)
|
|
|
+ console.log( '渡口信息:'+datas.portName+'位置:x:'+datas.mapx+' y:'+datas.mapy+''+JSON.stringify(item))
|
|
|
+ oneDjldPortLocation(datas,true)
|
|
|
break
|
|
|
default:
|
|
|
position_type = 'boat'
|
|
|
position_name = item.mmsi
|
|
|
+ locationBoat(item.mmsi)
|
|
|
+
|
|
|
}
|
|
|
|
|
|
// ueCallPositionByType(position_type, position_name)
|
|
@@ -104,7 +119,7 @@ export default {
|
|
|
const emit = defineEmits(['closeBoatList'])
|
|
|
|
|
|
function handleClose() {
|
|
|
- clearMap()
|
|
|
+ clearMap({is_draw: false, is_search:true, layers: []})
|
|
|
emit('closeBoatList')
|
|
|
}
|
|
|
|