Map2.vue 8.5 KB

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