ship-hover.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <template>
  2. <div class="hover-info" id="ID_shipHover" ref="ref_shipHover">
  3. <div class="hover-info-head">
  4. <span>{{info?.config?.name}}_{{ info?.isHistory ? '历史' : '实时'}}</span>
  5. </div>
  6. <div class="hover-info-close __hover" @click="null">
  7. <img src="@/components/easyMap/images/close.png" alt=""/>
  8. </div>
  9. <div class="hover-main" v-if="info?.data">
  10. <template v-for="item in shipHoverInfoCpt">
  11. <div class="hover-item">
  12. <div class="hover-item-label">{{item.label}}:</div>
  13. <div class="hover-item-value">{{item.value}}</div>
  14. </div>
  15. </template>
  16. </div>
  17. </div>
  18. </template>
  19. <script lang="ts">
  20. import {
  21. defineComponent,
  22. computed,
  23. onMounted,
  24. ref,
  25. reactive,
  26. watch,
  27. getCurrentInstance,
  28. ComponentInternalInstance,
  29. toRefs,
  30. nextTick
  31. } from 'vue'
  32. import * as turf from "@turf/turf";
  33. export default defineComponent({
  34. name: '',
  35. components: {},
  36. props: {
  37. that: <any>{},
  38. info: <any>{},
  39. staticList: {
  40. default: () => []
  41. }
  42. },
  43. setup(props, {emit}) {
  44. const state = reactive({})
  45. const STATIC = (id) => {
  46. if (id) {
  47. return props.staticList.filter(v => id == v.id)?.[0].wkt
  48. }
  49. return null
  50. }
  51. const DISTANCE = (p1, p2) => {
  52. if (p1 && p2) {
  53. return turf.distance(props.that.$easyMap.formatPosition.wptTcpt(p1), props.that.$easyMap.formatPosition.wptTcpt(p2), {units: 'kilometers'}).toFixed(2) + 'km'
  54. }
  55. return null
  56. }
  57. const shipHoverInfoCpt = computed(() => {
  58. const arr: any = []
  59. const DATA = props.info.data
  60. if (DATA.isHistory) {
  61. props.info?.config?.hover?.forEach(h => {
  62. if (h.historyValue) {
  63. let value = eval(h.historyValue)
  64. h.options?.forEach(v => {
  65. if (String(value) == v.value) {
  66. value = v.label
  67. }
  68. })
  69. arr.push({
  70. label: h.name,
  71. value: value
  72. })
  73. }
  74. })
  75. } else {
  76. props.info?.config?.hover?.forEach(h => {
  77. let value = eval(h.value)
  78. h.options?.forEach(v => {
  79. if (String(value) == v.value) {
  80. value = v.label
  81. }
  82. })
  83. arr.push({
  84. label: h.name,
  85. value: value
  86. })
  87. })
  88. }
  89. return arr
  90. })
  91. watch(() => props.info, () => {
  92. console.log(123)
  93. })
  94. onMounted(() => {
  95. // eval注册函数动态方法,不调用一下的话打包不包含
  96. DISTANCE(null, null)
  97. STATIC(null)
  98. })
  99. return {
  100. ...toRefs(state),
  101. shipHoverInfoCpt
  102. }
  103. },
  104. })
  105. </script>
  106. <style scoped lang="scss">
  107. .hover-info {
  108. $footH: 10px;
  109. width: 300px;
  110. background: linear-gradient(180deg, #3874C9 0%, #0043C4 100%);
  111. border-radius: 0px 4px 4px 4px;
  112. position: relative;
  113. display: flex;
  114. justify-content: center;
  115. &:after {
  116. content: '';
  117. position: absolute;
  118. bottom: -$footH;
  119. border-top: $footH solid #0043C4;
  120. border-left: $footH solid transparent;
  121. border-right: $footH solid transparent;
  122. }
  123. .hover-info-head {
  124. padding: 0 4px;
  125. height: 18px;
  126. position: absolute;
  127. top: -18px;
  128. left: 0;
  129. font-size: 12px;
  130. font-family: PingFang SC;
  131. font-weight: 500;
  132. color: #FFFFFF;
  133. display: flex;
  134. align-items: center;
  135. line-height: 8px;
  136. background: linear-gradient(180deg, #3874C9 0%, #0043C4 100%);
  137. border-radius: 2px 2px 0 0;/* 设置圆角 */
  138. >img {
  139. margin: 0 4px 0 6px;
  140. }
  141. }
  142. .hover-info-close {
  143. position: absolute;
  144. right: 0;
  145. top: -16px;
  146. }
  147. .hover-main {
  148. width: 100%;
  149. height: auto;
  150. padding: 10px;
  151. .hover-item {
  152. display: flex;
  153. .hover-item-label {
  154. min-width: 42px;
  155. font-size: 14px;
  156. font-family: PingFang SC;
  157. font-weight: 600;
  158. color: #08FFFF;
  159. line-height: 20px;
  160. }
  161. .hover-item-value {
  162. flex: 1;
  163. font-size: 14px;
  164. font-family: PingFang SC;
  165. font-weight: 400;
  166. color: #FFFFFF;
  167. line-height: 20px;
  168. }
  169. }
  170. }
  171. }
  172. </style>