sy-map.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <template>
  2. <div class="svg-map">
  3. <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
  4. viewBox="0 0 1955 940" :style="
  5. 'enable-background: new 0 0 866 359; left: ' +
  6. svgLeft +
  7. '; top: ' +
  8. svgTop +
  9. ';'
  10. " xml:space="preserve" :width="svgWidth" :height="svgHeight">
  11. <defs>
  12. <g id="nx-map-line">
  13. <line class="nx-map-line" x1="25" y1="25" x2="25" y2="80" stroke="#edbf03" stroke-width="1" />
  14. <circle class="nx-map-up-circle" cx="25" cy="25" r="2" fill="#edbf03" />
  15. </g>
  16. <g id="nx-map-circle">
  17. <circle class="nx-map-down-circle-1" cx="25" cy="80" r="3" fill="#edbf03" />
  18. <circle class="nx-map-down-circle-2" :class="{ 'nx-map-down-circle-loop': c1 }" cx="25" cy="80"
  19. r="9" stroke="#edbf03" stroke-width="1" fill="none" />
  20. <circle class="nx-map-down-circle-3" :class="{ 'nx-map-down-circle-loop': c2 }" cx="25" cy="80"
  21. r="16" opacity="0.6" stroke="#edbf03" stroke-width="1" fill="none" />
  22. </g>
  23. </defs>
  24. <g>
  25. <image style="overflow: visible" width="2050" height="1220" class="map-base" xlink:href="./img/dmt_sy1.png" transform="matrix(1 0 0 1 0 -100)"></image>
  26. <g class="item-label-hover" v-for="(item, index) in dataList" :key="index">
  27. <svg data-v-28794fe1="" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
  28. :x="String(Number(item.x)-45)" :y="String(Number(item.y)-60)" width="150" height="150" viewBox="0 0 220 392" enable-background="new 0 0 220 392"
  29. xml:space="preserve" class="windmill">
  30. <image v-if="item.name != '升压站'" data-v-28794fe1="" width="147" height="345" x="58" y="78" xlink:href="@/assets\png\sun.png" class="pillar"></image>
  31. <!-- 运行 -->
  32. <!-- <image v-if="item.type === 2 || item.type === 3" data-v-28794fe1="" width="200" height="460" xlink:href="@/assets\png\sun.png" class="turnCircle"></image> -->
  33. <!-- 受累 -->
  34. <!-- <image v-if="item.type === 12 || item.type === 13" data-v-28794fe1="" width="200" height="460" xlink:href="@/assets\png\sun.png"></image> -->
  35. <!-- 限电 -->
  36. <!-- <image v-if="item.type === 4 || item.type === 5" data-v-28794fe1="" width="200" height="460" xlink:href="@/assets\png\sun.png" class="turnCircle-slow"></image> -->
  37. <!-- 离线 -->
  38. <!-- <image v-if="item.type === 10 || item.type === 11" data-v-28794fe1="" width="200" height="460" xlink:href="@/assets\png\sun.png"></image> -->
  39. <!-- 待机 -->
  40. <!-- <image v-if="item.type === 0 || item.type === 1" data-v-28794fe1="" width="200" height="460" xlink:href="@/assets\png\sun.png"></image> -->
  41. <!-- 故障 -->
  42. <!-- <image v-if="item.type === 6 || item.type === 7" data-v-28794fe1="" width="200" height="460" xlink:href="@/assets\png\sun.png"></image> -->
  43. <!-- 检修 -->
  44. <!-- <image v-if="item.type === 8 || item.type === 9" data-v-28794fe1="" width="200" height="460" xlink:href="@/assets\png\sun.png"></image> -->
  45. <!-- 升压站 -->
  46. <image v-if="item.name == '升压站'" data-v-28794fe1="" width="200" height="460" xlink:href="@/assets/png/booster-station.png"></image>
  47. </svg>
  48. <!-- <text class="mapKey" :x="Number(item.x)+25" :y="Number(item.y) + 90" fill="#ffffff" font-size="14">{{ item.name }}</text> -->
  49. <text v-if="item.name != '升压站'" class="mapKey" :x="Number(item.x)+25" :y="Number(item.y) + 90" fill="#ffffff" font-size="14">{{ item.name }}</text>
  50. <text v-else class="mapKey" :x="Number(item.x)+10" :y="Number(item.y) + 80" fill="#ffffff" font-size="14">{{ item.name }}</text>
  51. <g class="isshow" v-if="item.name != '升压站'">
  52. <rect :x="Number(item.x) + 55" :y="Number(item.y) + 20" width="50" height="25" stroke="#46C55A35" fill="#000000" opacity="0.8" />
  53. <!-- <text class="mapValue" :x="Number(item.x) + 60" :y="Number(item.y) + 40" fill="#ffffff" font-size="14">{{ item.fs }}m/s</text> -->
  54. <text class="mapValue" :x="Number(item.x) + 60" :y="Number(item.y) + 35" fill="#ffffff" font-size="14">{{ item.gl }}kw</text>
  55. </g>
  56. </g>
  57. </g>
  58. <!-- <g>
  59. <svg :x="-20" :y="770" data-v-28794fe1="" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="150" height="150" viewBox="0 0 220 392" enable-background="new 0 0 220 392" xml:space="preserve" class="windmill">
  60. <image data-v-28794fe1="" width="147" height="345" x="58" y="78" xlink:href="@/assets/map/fan/yz.png" class="pillar"></image>
  61. <image data-v-28794fe1="" width="200" height="460" xlink:href="@/assets/map/fan/yp_green.png"></image>
  62. </svg>
  63. <text :x="43" :y="920" fill="#ffffff" font-size="14"> 运行 </text>
  64. <svg :x="40" :y="770" data-v-28794fe1="" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="150" height="150" viewBox="0 0 220 392" enable-background="new 0 0 220 392" xml:space="preserve" class="windmill">
  65. <image data-v-28794fe1="" width="147" height="345" x="58" y="78" xlink:href="@/assets/map/fan/yz.png" class="pillar"></image>
  66. <image data-v-28794fe1="" width="200" height="460" xlink:href="@/assets/map/fan/yp_white.png"></image>
  67. </svg>
  68. <text :x="107" :y="920" fill="#ffffff" font-size="14"> 受累 </text>
  69. <svg :x="100" :y="770" data-v-28794fe1="" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="150" height="150" viewBox="0 0 220 392" enable-background="new 0 0 220 392" xml:space="preserve" class="windmill">
  70. <image data-v-28794fe1="" width="147" height="345" x="58" y="78" xlink:href="@/assets/map/fan/yz.png" class="pillar"></image>
  71. <image data-v-28794fe1="" width="200" height="460" xlink:href="@/assets/map/fan/yp_purple.png"></image>
  72. </svg>
  73. <text :x="165" :y="920" fill="#ffffff" font-size="14"> 限电 </text>
  74. <svg :x="160" :y="770" data-v-28794fe1="" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="150" height="150" viewBox="0 0 220 392" enable-background="new 0 0 220 392" xml:space="preserve" class="windmill">
  75. <image data-v-28794fe1="" width="147" height="345" x="58" y="78" xlink:href="@/assets/map/fan/yz.png" class="pillar"></image>
  76. <image data-v-28794fe1="" width="200" height="460" xlink:href="@/assets/map/fan/yp_black.png"></image>
  77. </svg>
  78. <text :x="229" :y="920" fill="#ffffff" font-size="14"> 离线 </text>
  79. <svg :x="220" :y="770" data-v-28794fe1="" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="150" height="150" viewBox="0 0 220 392" enable-background="new 0 0 220 392" xml:space="preserve" class="windmill">
  80. <image data-v-28794fe1="" width="147" height="345" x="58" y="78" xlink:href="@/assets/map/fan/yz.png" class="pillar"></image>
  81. <image data-v-28794fe1="" width="200" height="460" xlink:href="@/assets/map/fan/yp_blue.png"></image>
  82. </svg>
  83. <text :x="288" :y="920" fill="#ffffff" font-size="14"> 待机 </text>
  84. <svg :x="280" :y="770" data-v-28794fe1="" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="150" height="150" viewBox="0 0 220 392" enable-background="new 0 0 220 392" xml:space="preserve" class="windmill">
  85. <image data-v-28794fe1="" width="147" height="345" x="58" y="78" xlink:href="@/assets/map/fan/yz.png" class="pillar"></image>
  86. <image data-v-28794fe1="" width="200" height="460" xlink:href="@/assets/map/fan/yp_red.png"></image>
  87. </svg>
  88. <text :x="347" :y="920" fill="#ffffff" font-size="14"> 故障 </text>
  89. <svg :x="340" :y="770" data-v-28794fe1="" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="150" height="150" viewBox="0 0 220 392" enable-background="new 0 0 220 392" xml:space="preserve" class="windmill">
  90. <image data-v-28794fe1="" width="147" height="345" x="58" y="78" xlink:href="@/assets/map/fan/yz.png" class="pillar"></image>
  91. <image data-v-28794fe1="" width="200" height="460" xlink:href="@/assets/map/fan/yp_orange.png"></image>
  92. </svg>
  93. <text :x="410" :y="920" fill="#ffffff" font-size="14"> 检修 </text>
  94. </g> -->
  95. <!-- <g>
  96. <image style="overflow: visible" width="2050" height="1110" class="map-base"
  97. xlink:href=""
  98. transform="matrix(1 0 0 1 0 -50)"></image>
  99. <g class="item-label-hover" v-for="(item, index) in dataList" :key="index">
  100. <image v-if="item.type === 0 || item.type === 1" width="70" height="70" class="pillar" :x="item.x"
  101. :y="item.y" xlink:href="../../../../assets/map/fan/green.png"></image>
  102. <image v-if="item.type === 2 || item.type === 3" width="70" height="70" class="pillar" :x="item.x"
  103. :y="item.y" xlink:href="../../../../assets/map/fan/blue.png"></image>
  104. <image v-if="item.type === 6 || item.type === 7" width="70" height="70" class="pillar" :x="item.x"
  105. :y="item.y" xlink:href="../../../../assets/map/fan/red.png"></image>
  106. <image v-if="item.type === 12 || item.type === 13" width="70" height="70" class="pillar" :x="item.x"
  107. :y="item.y" xlink:href="../../../../assets/map/fan/white.png"></image>
  108. <image v-if="item.type === 8 || item.type === 9" width="70" height="70" class="pillar" :x="item.x"
  109. :y="item.y" xlink:href="../../../../assets/map/fan/orange.png"></image>
  110. <image v-if="item.type === 4 || item.type === 5" width="70" height="70" class="pillar" :x="item.x"
  111. :y="item.y" xlink:href="../../../../assets/map/fan/purple.png"></image>
  112. <image v-if="item.type === 10 || item.type === 11" width="70" height="70" class="pillar" :x="item.x"
  113. :y="item.y" xlink:href="../../../../assets/map/fan/black.png"></image>
  114. <text class="mapKey" :x="Number(item.x) + 26" :y="Number(item.y) + 90" fill="#ffffff"
  115. font-size="14">
  116. {{ item.name }}
  117. </text>
  118. <g class="isshow">
  119. <rect :x="Number(item.x) + 55" :y="Number(item.y) + 20" width="70" height="50"
  120. stroke="#46C55A35" fill="#000000" opacity="0.8" />
  121. <text class="mapValue" :x="Number(item.x) + 60" :y="Number(item.y) + 40" fill="#ffffff"
  122. font-size="14">{{ item.fs }}
  123. m/s</text>
  124. <text class="mapValue" :x="Number(item.x) + 60" :y="Number(item.y) + 60" fill="#ffffff"
  125. font-size="14">{{ item.gl }}
  126. kw</text>
  127. </g>
  128. </g>
  129. </g> -->
  130. </svg>
  131. </div>
  132. </template>
  133. <script>
  134. export default {
  135. props: {
  136. windturbineList: {
  137. type: Array,
  138. default: [],
  139. },
  140. },
  141. data() {
  142. return {
  143. dataList: [
  144. {
  145. name: '升压站',
  146. x: '1760',
  147. y: '360',
  148. },
  149. {
  150. name: '#13',
  151. x: '1415',
  152. y: '195',
  153. type: 3,
  154. },
  155. {
  156. name: '#14',
  157. x: '1430',
  158. y: '325',
  159. type: 3,
  160. },
  161. {
  162. name: '#15',
  163. x: '1440',
  164. y: '465',
  165. type: 3,
  166. },
  167. {
  168. name: '#01',
  169. x: '1215',
  170. y: '215',
  171. type: 3,
  172. },
  173. {
  174. name: '#05',
  175. x: '1215',
  176. y: '325',
  177. type: 3,
  178. },
  179. {
  180. name: '#10',
  181. x: '1220',
  182. y: '465',
  183. type: 3,
  184. },
  185. {
  186. name: '#12',
  187. x: '1135',
  188. y: '555',
  189. type: 3,
  190. },
  191. {
  192. name: '#04',
  193. x: '1005',
  194. y: '315',
  195. type: 3,
  196. },
  197. {
  198. name: '#09',
  199. x: '995',
  200. y: '455',
  201. type: 3,
  202. },
  203. {
  204. name: '#03',
  205. x: '785',
  206. y: '315',
  207. type: 3,
  208. },
  209. {
  210. name: '#08',
  211. x: '765',
  212. y: '455',
  213. type: 3,
  214. },
  215. {
  216. name: '#02',
  217. x: '580',
  218. y: '310',
  219. type: 3,
  220. },
  221. {
  222. name: '#07',
  223. x: '545',
  224. y: '455',
  225. type: 3,
  226. },
  227. {
  228. name: '#11',
  229. x: '605',
  230. y: '540',
  231. type: 3,
  232. },
  233. {
  234. name: '#06',
  235. x: '325',
  236. y: '450',
  237. type: 3,
  238. },
  239. ],
  240. };
  241. },
  242. mounted() {
  243. },
  244. methods: {
  245. dayaDeal(windturbineList) {
  246. windturbineList.push({
  247. fs: '',
  248. gl: '',
  249. wtCode: '升压站',
  250. })
  251. this.dataList.forEach(item => {
  252. let data = windturbineList.find(val => val.wtCode === item.name)
  253. item.type = data.fjzt
  254. item.fs = data.fs
  255. item.gl = data.gl
  256. })
  257. },
  258. },
  259. }
  260. </script>
  261. <style lang="less" scoped>
  262. .item-label-hover:hover .isshow {
  263. display: flex;
  264. }
  265. .isshow {
  266. display: none;
  267. color: #ffffff;
  268. }
  269. </style>