Map2.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <template>
  2. <div>
  3. <div class="btn-group-tabs">
  4. <BtnGroup2 :gsGroups="gsGroups" :selectValue="gsselectValue" :btnGroups="btnGroups" :rowIndex="rowIndex"
  5. :index="selectIndex" @select="select" @selectChange="selectChange" :wpId="wpId"></BtnGroup2>
  6. </div>
  7. <div class="period">
  8. 期次:
  9. <div class="period-item" :class="{ active: periodIndex == val.id }"
  10. v-for="(val, index) in btnGroups[rowIndex]?.btns[selectIndex]?.pjls" :key="index"
  11. @click="handleChange(val)">{{ val.name }}</div>
  12. </div>
  13. <!-- 羊头崖 -->
  14. <ytyMap v-if="periodIndex === 'YTY01_GC'" ref="maps"></ytyMap>
  15. <!-- 败虎堡三期 -->
  16. <bhb3Map v-if="periodIndex === 'BHB301_GC'" ref="maps"></bhb3Map>
  17. <!-- 高家堰 -->
  18. <gjyMap v-if="periodIndex === 'GJY01_GC'" ref="maps"></gjyMap>
  19. <gjyMap2 v-if="periodIndex === 'GJY02_GC'" ref="maps"></gjyMap2>
  20. <!-- 红石峁 -->
  21. <hsmMap v-if="periodIndex === 'HSM01_GC'" ref="maps"></hsmMap>
  22. <!-- 尹灵芝 -->
  23. <ylzMap v-if="periodIndex === 'YLZ01_GC'" ref="maps"></ylzMap>
  24. <!-- 丁家窑 -->
  25. <djyMap v-if="periodIndex === 'DJY01_GC'" ref="maps"></djyMap>
  26. <djyMap2 v-if="periodIndex === 'DJY02_GC'" ref="maps"></djyMap2>
  27. <!-- 牛家岭 -->
  28. <njlMap v-if="periodIndex === 'NJL01_GC'" ref="maps"></njlMap>
  29. <njlMap2 v-if="periodIndex === 'NJL02_GC'" ref="maps"></njlMap2>
  30. <!-- 盘道梁 -->
  31. <pdlMap v-if="periodIndex === 'PDL01_GC'" ref="maps"></pdlMap>
  32. <!-- 小五台 -->
  33. <xwtMap v-if="periodIndex === 'XWT01_GC'" ref="maps"></xwtMap>
  34. <!-- 败虎堡 一期 -->
  35. <bhbMap v-if="periodIndex === 'BHB01_GC'" ref="maps"></bhbMap>
  36. <!-- 平头镇 -->
  37. <ptzMap v-if="periodIndex === 'PTZ01_GC'" ref="maps"></ptzMap>
  38. <ptzMap2 v-if="periodIndex === 'PTZ02_GC'" ref="maps"></ptzMap2>
  39. <!-- 禹风 败虎堡 -->
  40. <bhbMap2 v-if="periodIndex === 'YF01_GC'" ref="maps"></bhbMap2>
  41. <yfMap2 v-if="periodIndex === 'YF02_GC'" ref="maps"></yfMap2>
  42. <!-- 平鲁大河堡 -->
  43. <pldhbMap v-if="periodIndex === 'GJY03_GC'" ref="maps"></pldhbMap>
  44. <!-- 朱坑一期 -->
  45. <zkyqMap v-if="periodIndex === 'ZK01_GC'" ref="maps"></zkyqMap>
  46. <!-- 米梁局 -->
  47. <mljMap v-if="periodIndex === 'MLJ01_GC'" ref="maps"></mljMap>
  48. <!-- 山阴二期 -->
  49. <syMap2 v-if="periodIndex === 'SY02_GC'" ref="maps"></syMap2>
  50. <!-- 山阴一期 -->
  51. <syMap v-if="periodIndex === 'SY01_GC'" ref="maps"></syMap>
  52. </div>
  53. </template>
  54. <script>
  55. import BtnGroup2 from "@com/coms/btn/btn-group-double.vue";
  56. import api from "@api/cockpit/matrix/index.js";
  57. import gjyMap from "./components/gjy-map.vue";
  58. import gjyMap2 from "./components/gjy-map2.vue";
  59. import hsmMap from "./components/hsm-map.vue";
  60. import ylzMap from "./components/ylz-map.vue";
  61. import ytyMap from "./components/yty-map.vue";
  62. import bhb3Map from "./components/bhb3-map.vue";
  63. import djyMap from "./components/djy-map.vue";
  64. import djyMap2 from "./components/djy-map2.vue";
  65. import njlMap from "./components/njl-map.vue";
  66. import njlMap2 from "./components/njl-map2.vue";
  67. import pdlMap from "./components/pdl-map.vue";
  68. import ptzMap from "./components/ptz-map.vue";
  69. import ptzMap2 from "./components/ptz2-map.vue";
  70. import xwtMap from "./components/xwt-map.vue";
  71. import yfMap2 from "./components/yf2-map.vue";
  72. import bhbMap2 from "./components/bhb2-map.vue";
  73. import bhbMap from "./components/bhb-map.vue";
  74. import pldhbMap from "./components/pldhb-map.vue";
  75. import zkyqMap from "./components/zkyq-map.vue";
  76. import mljMap from "./components/mlj-map.vue";
  77. import syMap2 from "./components/sy2-map.vue";
  78. import syMap from "./components/sy-map.vue";
  79. export default {
  80. components: {
  81. mljMap,
  82. zkyqMap,
  83. pldhbMap,
  84. BtnGroup2,
  85. gjyMap,
  86. gjyMap2,
  87. hsmMap,
  88. ylzMap,
  89. ytyMap,
  90. bhb3Map,
  91. djyMap,
  92. djyMap2,
  93. njlMap,
  94. njlMap2,
  95. pdlMap,
  96. ptzMap,
  97. ptzMap2,
  98. xwtMap,
  99. yfMap2,
  100. bhbMap,
  101. bhbMap2,
  102. syMap2,
  103. syMap
  104. },
  105. data() {
  106. return {
  107. // 定时器
  108. timer: "",
  109. gsGroups: [],
  110. gsselectValue: '',
  111. selectIndex: 0,
  112. rowIndex: 0,
  113. periodIndex: '',
  114. windturbineList: [],
  115. btnGroups: [
  116. {
  117. icon: "svg-wind-site",
  118. btns: [],
  119. },
  120. {
  121. icon: "svg-photovoltaic",
  122. btns: [],
  123. },
  124. ],
  125. }
  126. },
  127. created() {
  128. this.wpId = this.$route.params.wpId;
  129. this.$nextTick(() => {
  130. this.getGS();
  131. this.timer = setInterval(() => {
  132. this.getWinds()
  133. }, 3000);
  134. });
  135. },
  136. methods: {
  137. getGS() {
  138. api.companysAjax().then(res => {
  139. if (res.data) {
  140. this.gsselectValue = res.data[0].id
  141. this.gsGroups = res.data
  142. this.getWp()
  143. }
  144. })
  145. },
  146. selectChange(val) {
  147. this.gsselectValue = val
  148. this.getWp()
  149. },
  150. getWp() {
  151. api.windfarmByCmAjax({
  152. cmId: this.gsselectValue
  153. }).then((res) => {
  154. let btnGroups = [
  155. {
  156. icon: "svg-wind-site",
  157. btns: [],
  158. },
  159. {
  160. icon: "svg-photovoltaic",
  161. btns: [],
  162. },
  163. ];
  164. res.data.forEach((ele, index) => {
  165. if (ele.id.indexOf("FDC") !== -1) {
  166. btnGroups[0].btns.push({
  167. text: ele.name,
  168. code: ele.id,
  169. pjls: ele.pjls
  170. });
  171. } else {
  172. btnGroups[1].btns.push({
  173. text: ele.name,
  174. code: ele.id,
  175. pjls: ele.pjls
  176. });
  177. }
  178. });
  179. this.btnGroups = btnGroups;
  180. this.renderBtnActiveIndex();
  181. });
  182. },
  183. getWinds() {
  184. api.windturbineByPjIdAjax({
  185. pjId: this.periodIndex
  186. }).then(res => {
  187. if (res.data.length > 0 && this.$refs.maps) {
  188. this.$refs.maps.dayaDeal(res.data)
  189. }
  190. })
  191. },
  192. renderBtnActiveIndex() {
  193. this.btnGroups.forEach((pEle, pIndex) => {
  194. pEle.btns.forEach((cEle, cIndex) => {
  195. if (cEle.code === this.wpId) {
  196. this.rowIndex = pIndex;
  197. this.selectIndex = cIndex;
  198. }
  199. });
  200. });
  201. this.periodIndex = this.btnGroups[this.rowIndex]?.btns[this.selectIndex]?.pjls[0].id
  202. this.getWinds()
  203. },
  204. handleChange(val) {
  205. this.periodIndex = val.id
  206. this.getWinds()
  207. },
  208. select(res) {
  209. this.$router.replace({
  210. path: `/monitor/windsite/map2/${res.code}`,
  211. });
  212. },
  213. },
  214. unmounted() {
  215. clearInterval(this.timer);
  216. this.timer = null;
  217. },
  218. watch: {
  219. $route(res) {
  220. this.wpId = res.params.wpId;
  221. if (res.params.wpId) {
  222. this.getWp();
  223. }
  224. this.renderBtnActiveIndex();
  225. },
  226. },
  227. }
  228. </script>
  229. <style lang="less" scoped>
  230. .period {
  231. display: flex;
  232. flex-direction: row;
  233. .period-item {
  234. line-height: 23px;
  235. font-size: 12px;
  236. text-align: center;
  237. margin-right: 4px;
  238. border: 1px solid #606769;
  239. border-radius: 2px;
  240. padding: 0px 5px;
  241. margin-bottom: 10px;
  242. &.active {
  243. color: #ffffff;
  244. background-color: rgba(75, 85, 174, 0.6);
  245. border-color: rgba(75, 85, 174, 0.6);
  246. }
  247. }
  248. }
  249. </style>