|
@@ -22,7 +22,7 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<script setup>
|
|
|
- import {onMounted, onBeforeUnmount, ref} from 'vue'
|
|
|
+ import {onMounted, onBeforeUnmount, ref,watch} from 'vue'
|
|
|
import bus from '@/utils/bus'
|
|
|
import 'element-plus/es/components/date-picker/style/css'
|
|
|
import {setBoat} from "@/utils/map/Boat";
|
|
@@ -33,6 +33,7 @@ onMounted(() => {
|
|
|
|
|
|
})
|
|
|
|
|
|
+ const props= defineProps(['shipinRonghe'])
|
|
|
|
|
|
onBeforeUnmount(() => {
|
|
|
})
|
|
@@ -53,6 +54,12 @@ onBeforeUnmount(() => {
|
|
|
]})
|
|
|
const emit = defineEmits(['showView','hiddenView'])
|
|
|
|
|
|
+ watch(props,(n,o)=>{
|
|
|
+ if (!props.shipinRonghe)
|
|
|
+ {
|
|
|
+ itemForAll.value.data[1].click=false
|
|
|
+ }
|
|
|
+ })
|
|
|
|
|
|
function chlickLi(item) {
|
|
|
if (item.click)
|