index.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <template>
  2. <DragWindow
  3. v-if="show"
  4. @onClose="$emit('update:show', false)"
  5. title="轨迹列表"
  6. v-model:layout="state.layout"
  7. expend
  8. >
  9. <div class="swm-track-com">
  10. <div class="swm-track-com-head row">
  11. <div class="index">序号</div>
  12. <div class="target">目标ID</div>
  13. <div class="time">轨迹时长</div>
  14. <div class="operation">操作</div>
  15. </div>
  16. <div class="swm-track-com-body">
  17. <template v-for="([key, value], index) in ShipMapStore.trackMap">
  18. <div class="row" :style="`color: ${value.color};`">
  19. <div class="index">{{index + 1}}</div>
  20. <div class="target __hover" @click="value.moveToTrack(), value.showArchive = true">{{value.isWarning ? value.data[ShipMapStore.trackKeys.mergeTarget] : key}}</div>
  21. <div class="time">
  22. {{getDuration(value)}}
  23. </div>
  24. <div class="operation">
  25. <el-tooltip :enterable="false" placement="top" content="隐藏轨迹" v-if="value.showTrack">
  26. <SvgIcon class="__hover" name="eye" size="16" color="#22E622" @click="value.visibleTrack(false)"/>
  27. </el-tooltip>
  28. <el-tooltip :enterable="false" placement="top" content="显示轨迹" v-else>
  29. <SvgIcon class="__hover" name="eye-close" size="16" color="#22E622" @click="value.visibleTrack(true)"/>
  30. </el-tooltip>
  31. <!-- <el-tooltip :enterable="false" placement="top" content="轨迹分析" v-if="value.history?.length > 0">-->
  32. <!-- <SvgIcon class="__hover" name="panel" size="16" color="#48DCFD"/>-->
  33. <!-- </el-tooltip>-->
  34. <el-tooltip :enterable="false" placement="top" content="调色盘">
  35. <div class="color">
  36. <SvgIcon class="__hover" name="color" size="16" color="#FF7223"/>
  37. <el-color-picker v-model="value.color" @change="handleColor(value)"/>
  38. </div>
  39. </el-tooltip>
  40. <el-tooltip :enterable="false" placement="top" content="删除">
  41. <SvgIcon class="__hover" name="del" size="16" color="#AADDFF" @click="value.del()"/>
  42. </el-tooltip>
  43. </div>
  44. </div>
  45. </template>
  46. </div>
  47. </div>
  48. </DragWindow>
  49. </template>
  50. <script setup lang="ts">
  51. import {computed, getCurrentInstance, markRaw, nextTick, onMounted, reactive, ref, watch} from "vue";
  52. import DragWindow from '../components/drag-window.vue'
  53. import {useShipMapStore} from "@/stores";
  54. import {comTimeByArea} from "@/utils/util";
  55. const ShipMapStore = useShipMapStore()
  56. const {proxy} = getCurrentInstance()
  57. const props = defineProps({
  58. show: {},
  59. mapFunc: {}
  60. })
  61. const state: any = reactive({
  62. layout: {
  63. width: 480,
  64. left: 85,
  65. top: 110
  66. },
  67. })
  68. const getDuration = (value) => {
  69. let start = null
  70. let end = null
  71. if (value.history.length > 0) {
  72. start = value.history[0].mergeTime
  73. end = value.history[value.history.length - 1].mergeTime
  74. }
  75. if (value.real.length > 0) {
  76. if (!start) {
  77. start = value.real[0].mergeTime
  78. }
  79. end = value.real[value.real.length - 1].mergeTime
  80. }
  81. return comTimeByArea(start, end, true)
  82. }
  83. const handleColor = (value) => {
  84. nextTick(() => {
  85. value.refreshTrackStyle?.()
  86. })
  87. }
  88. </script>
  89. <style lang="scss" scoped>
  90. $mapHeight: var(--easy-map-height);
  91. .swm-track-com {
  92. max-height: calc($mapHeight - 250px);
  93. display: flex;
  94. flex-direction: column;
  95. padding: 16px 8px;
  96. overflow-y: auto;
  97. .row {
  98. width: 100%;
  99. display: flex;
  100. align-items: center;
  101. >div {
  102. height: 32px;
  103. display: flex;
  104. align-items: center;
  105. justify-content: center;
  106. border-left: 1px solid rgba(104,195,255,0.1);
  107. border-bottom: 1px solid rgba(104,195,255,0.1);
  108. &:last-child {
  109. border-right: 1px solid rgba(104,195,255,0.1);
  110. }
  111. }
  112. .index {
  113. width: 40px;
  114. }
  115. .target {
  116. flex: 1;
  117. }
  118. .time {
  119. width: 100px;
  120. }
  121. .operation {
  122. width: 140px;
  123. }
  124. }
  125. .swm-track-com-head {
  126. background: #152584;
  127. border-top: 1px solid rgba(104,195,255,0.1);
  128. >div {
  129. font-family: PingFang SC, PingFang SC;
  130. font-weight: 400;
  131. font-size: 14px;
  132. color: #68C3FF;
  133. }
  134. }
  135. .swm-track-com-body {
  136. flex: 1;
  137. overflow-y: auto;
  138. .row {
  139. >div {
  140. font-family: PingFang SC, PingFang SC;
  141. font-weight: 400;
  142. font-size: 14px;
  143. }
  144. .operation {
  145. gap: 4px;
  146. >img {
  147. width: 16px;
  148. height: 16px;
  149. }
  150. .color {
  151. position: relative;
  152. width: 16px;
  153. height: 16px;
  154. display: flex;
  155. >img {
  156. width: 100%;
  157. height: 100%;
  158. }
  159. :deep(.el-color-picker) {
  160. width: 100%;
  161. height: 100%;
  162. position: absolute;
  163. opacity: 0;
  164. .el-color-picker__trigger {
  165. width: 100%;
  166. height: 100%;
  167. }
  168. }
  169. }
  170. }
  171. }
  172. }
  173. }
  174. </style>