123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <template>
- <DragWindow
- ref="ref_assistant"
- v-if="state.show"
- @onClose="state.show = false"
- title="预警详情"
- v-model:layout="state.layout"
- close
- >
- <div class="assistant" v-if="state.show" v-loading="state.loading">
- <div class="title">
- {{ infoCpt.ruleName }}
- <div class="__hover" @click="onWarningInfo">查看详情</div>
- </div>
- <template v-for="item in infoCpt.dynamicShipList">
- <div class="target" v-if="item.targetName">{{item.targetName}}({{item.mergeTarget}})</div>
- <div class="target" v-else>{{item.mergeTarget}}</div>
- </template>
- <div class="content">
- <div class="img">
- <img src="@/assets/images/web/ship.png">
- </div>
- <div class="infos">
- <div>预警时间</div>
- <div>{{ infoCpt.warnTime }}</div>
- <template v-if="infoCpt.areaName">
- <div>预警区域</div>
- <div>{{ infoCpt.areaName }}</div>
- </template>
- </div>
- </div>
- </div>
- </DragWindow>
- </template>
- <script setup lang="ts">
- import {computed, getCurrentInstance, markRaw, onBeforeMount, onMounted, reactive, ref, watch} from "vue";
- import DragWindow from '../components/drag-window.vue'
- import {useDictionaryStore, useShipMapStore} from "@/stores";
- import {ElMessage} from "element-plus";
- const DictionaryStore = useDictionaryStore()
- const ShipMapStore = useShipMapStore()
- const {proxy} = getCurrentInstance()
- const props = defineProps({
- mapHeight: {},
- })
- const state: any = reactive({
- show: false,
- layout: {
- width: 506,
- left: 85,
- top: props.mapHeight - 60 - (300 + 60)
- },
- })
- const ref_assistant = ref()
- const infoCpt = computed(() => ShipMapStore.warningInfo)
- watch(() => infoCpt.value, (n) => {
- if (n) {
- state.show = true
- ref_assistant.value?.setZ()
- }
- })
- const onWarningInfo = () => {
- ShipMapStore.$patch((state) => {
- state.warningParams = {
- ruleName: infoCpt.value.ruleName,
- mergeTarget: infoCpt.value.dynamicShipList[0]?.mergeTarget,
- warnTime: infoCpt.value.warnTime,
- }
- })
- }
- onMounted(() => {
- })
- </script>
- <style lang="scss" scoped>
- .assistant {
- height: 300px;
- padding: 24px;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .title {
- width: 100%;
- height: 40px;
- background: rgba(88,148,235,0.2);
- border-radius: 8px;
- display: flex;
- align-items: center;
- font-weight: 400;
- font-size: 20px;
- color: #FFFFFF;
- &:before {
- content: '';
- width: 6px;
- height: 100%;
- background: linear-gradient(0deg, rgba(255,255,255,0.11), rgba(255,255,255,0.75));
- box-shadow: 0px 2px 0px 0px rgba(81,129,228,0.4);
- border-radius: 8px 0px 0px 8px;
- margin-right: 10px;
- }
- >div {
- margin-left: auto;
- margin-right: 24px;
- font-weight: 400;
- font-size: 16px;
- color: #FFFFFF;
- }
- }
- .target {
- font-weight: 400;
- font-size: 18px;
- color: #FFFFFF;
- }
- .content {
- display: flex;
- gap: 22px;
- .img {
- width: 240px;
- height: 150px;
- border-radius: 4px;
- border: 1px solid #AED0FF;
- padding: 9px;
- >img {
- width: 100%;
- height: 100%;
- }
- }
- .infos {
- display: flex;
- flex-direction: column;
- font-weight: 400;
- font-size: 16px;
- color: #FFFFFF;
- line-height: 27px;
- >:nth-child(3) {
- margin-top: 10px;
- }
- }
- }
- }
- </style>
|