Browse Source

增加没有轨迹的话提醒

zk 1 year ago
parent
commit
08d2b9163a

BIN
src/assets/imgs/common/legend-cg.png


+ 7 - 0
src/views/home/cpns/boatPanel/BoatDjld.vue

@@ -99,6 +99,13 @@ export default {
     if(data.isOk=='true') {
       playState.value=0
     }
+    else {
+      alert("此船舶该时段未查到轨迹点")
+      this.$message({
+        message:'此船舶该时段未查到轨迹点',
+        type:'warning'
+      });
+    }
   })
 
   bus.on('ueRec_pujiangInit', (data) => {

+ 7 - 0
src/views/home/cpns/boatPanel/BoatGeneral.vue

@@ -113,6 +113,13 @@ export default {
     if(data.isOk=='true') {
       playState.value=0
     }
+    else {
+      alert("此船舶该时段未查到轨迹点")
+      this.$message({
+        message:'此船舶该时段未查到轨迹点',
+        type:'warning'
+      });
+    }
   })
 
   onBeforeUnmount(() => {

+ 8 - 0
src/views/home/cpns/boatPanel/BoatKkjk.vue

@@ -201,6 +201,14 @@ export default {
     if(data.isOk=='true') {
       playState.value=0
     }
+    else {
+      alert("此船舶该时段未查到轨迹点")
+      this.$message({
+        message:'此船舶该时段未查到轨迹点',
+        type:'warning'
+      });
+    }
+
   })
 
   onBeforeUnmount(() => {

+ 7 - 0
src/views/home/cpns/boatPanel/BoatPjyl.vue

@@ -151,6 +151,13 @@ export default {
     if(data.isOk=='true') {
       playState.value=0
     }
+    else {
+      alert("此船舶该时段未查到轨迹点")
+      this.$message({
+        message:'此船舶该时段未查到轨迹点',
+        type:'warning'
+      });
+    }
   })
 
   const bottomType = ref('playback')

+ 3 - 1
src/views/home/cpns/boatPanel/Index.vue

@@ -21,7 +21,7 @@ import BoatPjyl from './BoatPjyl.vue';
 import BoatKkjk from './BoatKkjk.vue';
 import BoatDjld from './BoatDjld.vue';
 import { GetBoatInfo, GetBoatInfoByEventCode } from '@/apis/other'
-import { ueCallCloseBoat } from '@/utils/UIInteractions'
+import { ueCallCloseBoat, ueCallClearAllAi, ueCallInitAll } from '@/utils/UIInteractions'
 import bus from '@/utils/bus';
 
 const props = defineProps(['boat-info'])
@@ -74,6 +74,8 @@ watch(()=>props.boatInfo, (val) => {
 function handleClose() {
   ueCallCloseBoat()
   emit('closeBoatPanel')
+  ueCallInitAll()
+  ueCallClearAllAi()
 }
 
 </script>