assistant.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <DragWindow
  3. ref="ref_assistant"
  4. v-if="state.show"
  5. @onClose="state.show = false"
  6. title="预警详情"
  7. v-model:layout="state.layout"
  8. close
  9. >
  10. <div class="assistant" v-if="state.show" v-loading="state.loading">
  11. <div class="title">
  12. {{ infoCpt.ruleName }}
  13. <div class="__hover" @click="onWarningInfo">查看详情</div>
  14. </div>
  15. <template v-for="item in infoCpt.dynamicShipList">
  16. <div class="target" v-if="item.targetName">{{item.targetName}}({{item.mergeTarget}})</div>
  17. <div class="target" v-else>{{item.mergeTarget}}</div>
  18. </template>
  19. <div class="content">
  20. <div class="img">
  21. <img src="@/assets/images/web/ship.png">
  22. </div>
  23. <div class="infos">
  24. <div>预警时间</div>
  25. <div>{{ infoCpt.warnTime }}</div>
  26. <template v-if="infoCpt.areaName">
  27. <div>预警区域</div>
  28. <div>{{ infoCpt.areaName }}</div>
  29. </template>
  30. </div>
  31. </div>
  32. </div>
  33. </DragWindow>
  34. </template>
  35. <script setup lang="ts">
  36. import {computed, getCurrentInstance, markRaw, onBeforeMount, onMounted, reactive, ref, watch} from "vue";
  37. import DragWindow from '../components/drag-window.vue'
  38. import {useDictionaryStore, useShipMapStore} from "@/stores";
  39. import {ElMessage} from "element-plus";
  40. const DictionaryStore = useDictionaryStore()
  41. const ShipMapStore = useShipMapStore()
  42. const {proxy} = getCurrentInstance()
  43. const props = defineProps({
  44. mapHeight: {},
  45. })
  46. const state: any = reactive({
  47. show: false,
  48. layout: {
  49. width: 506,
  50. left: 85,
  51. top: props.mapHeight - 60 - (300 + 60)
  52. },
  53. })
  54. const ref_assistant = ref()
  55. const infoCpt = computed(() => ShipMapStore.warningInfo)
  56. watch(() => infoCpt.value, (n) => {
  57. if (n) {
  58. state.show = true
  59. ref_assistant.value?.setZ()
  60. }
  61. })
  62. const onWarningInfo = () => {
  63. ShipMapStore.$patch((state) => {
  64. state.warningParams = {
  65. ruleName: infoCpt.value.ruleName,
  66. mergeTarget: infoCpt.value.dynamicShipList[0]?.mergeTarget,
  67. warnTime: infoCpt.value.warnTime,
  68. }
  69. })
  70. }
  71. onMounted(() => {
  72. })
  73. </script>
  74. <style lang="scss" scoped>
  75. .assistant {
  76. height: 300px;
  77. padding: 24px;
  78. display: flex;
  79. flex-direction: column;
  80. justify-content: space-between;
  81. .title {
  82. width: 100%;
  83. height: 40px;
  84. background: rgba(88,148,235,0.2);
  85. border-radius: 8px;
  86. display: flex;
  87. align-items: center;
  88. font-weight: 400;
  89. font-size: 20px;
  90. color: #FFFFFF;
  91. &:before {
  92. content: '';
  93. width: 6px;
  94. height: 100%;
  95. background: linear-gradient(0deg, rgba(255,255,255,0.11), rgba(255,255,255,0.75));
  96. box-shadow: 0px 2px 0px 0px rgba(81,129,228,0.4);
  97. border-radius: 8px 0px 0px 8px;
  98. margin-right: 10px;
  99. }
  100. >div {
  101. margin-left: auto;
  102. margin-right: 24px;
  103. font-weight: 400;
  104. font-size: 16px;
  105. color: #FFFFFF;
  106. }
  107. }
  108. .target {
  109. font-weight: 400;
  110. font-size: 18px;
  111. color: #FFFFFF;
  112. }
  113. .content {
  114. display: flex;
  115. gap: 22px;
  116. .img {
  117. width: 240px;
  118. height: 150px;
  119. border-radius: 4px;
  120. border: 1px solid #AED0FF;
  121. padding: 9px;
  122. >img {
  123. width: 100%;
  124. height: 100%;
  125. }
  126. }
  127. .infos {
  128. display: flex;
  129. flex-direction: column;
  130. font-weight: 400;
  131. font-size: 16px;
  132. color: #FFFFFF;
  133. line-height: 27px;
  134. >:nth-child(3) {
  135. margin-top: 10px;
  136. }
  137. }
  138. }
  139. }
  140. </style>