allMatrices.vue 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144
  1. <template>
  2. <el-dialog width="70%" @open="opened" @closed="closed" :fullscreen="true" :show-close="true" class="dialogs">
  3. <template #title>
  4. <div class="showTitles currentShowTitles">
  5. <div class="titles">矩阵</div>
  6. </div>
  7. </template>
  8. <div class="body" @contextmenu="contextmenu">
  9. <div class="titleList">
  10. <div class="title">
  11. <div :class="current === item.id ? 'title-onItem' : 'title-item'" v-for="(item, index) in stationList"
  12. :key="index" @click="handleChange(item.id)">
  13. {{ item.name }}
  14. </div>
  15. </div>
  16. <div class="infoMsg">
  17. <div class="infoTitle">
  18. <span>欠发电量</span>
  19. </div>
  20. <div v-for="item in showpieColor" :key="item.name" class="infoMainCV">
  21. <span class="colorLine" :style="{'background': item.value}"></span>
  22. <span class="colorValue">{{item.name}}</span>
  23. </div>
  24. </div>
  25. </div>
  26. <div class="content">
  27. <box-select node=".box" @selectList="selectList">
  28. <div class="windStation" v-for="(item, index) in stationArr" :key="index">
  29. <div class="stationTitle" v-if="item[0].stationId">
  30. <div class="stationName">
  31. {{getStationName(item)}}
  32. </div>
  33. <div class="num">
  34. <div class="jrts">接入台数</div>
  35. <!-- <div class="jrts_num">{{ item.length }}</div> -->
  36. <div class="jrts_num">{{ getStatus(item, 'jr') }}</div>
  37. </div>
  38. <div class="num">
  39. <div class="djts">待机台数</div>
  40. <div class="djts_num">
  41. <!-- {{ item.filter((val) => val.status === 2)?.length }} -->
  42. <div class="jrts_num">{{ getStatus(item, 'dj') }}</div>
  43. </div>
  44. </div>
  45. <div class="num">
  46. <div class="bwts">并网台数</div>
  47. <div class="bwts_num">
  48. <!-- {{ item.filter((val) => val.status === 4)?.length }} -->
  49. <div class="jrts_num">{{ getStatus(item, 'bw') }}</div>
  50. </div>
  51. </div>
  52. <div class="num">
  53. <div class="gzts">故障台数</div>
  54. <div class="gzts_num">
  55. <!-- {{ item.filter((val) => val.status === 5)?.length }} -->
  56. <div class="jrts_num">{{ getStatus(item, 'gz') }}</div>
  57. </div>
  58. </div>
  59. <div class="num">
  60. <div class="jxts">检修台数</div>
  61. <div class="jxts_num">
  62. <!-- {{ item.filter((val) => val.status === 6)?.length }} -->
  63. <div class="jrts_num">{{ getStatus(item, 'jx') }}</div>
  64. </div>
  65. </div>
  66. <div class="num">
  67. <div class="lxts">离线台数</div>
  68. <div class="lxts_num">
  69. <!-- {{ item.filter((val) => val.status === 7)?.length }} -->
  70. <div class="jrts_num">{{ getStatus(item, 'lx') }}</div>
  71. </div>
  72. </div>
  73. <div class="stationInfo">
  74. <div class="name">实时功率</div>
  75. <div class="nums">
  76. <!-- {{
  77. $store.state.titleInfo.stationOverviewInfos[
  78. item[0].stationId
  79. ]?.realTimePower?.value.toFixed(2)
  80. }}MW -->
  81. {{getseeting($store.state.titleInfo.stationOverviewInfos, item[0], 'power')}}MW
  82. </div>
  83. </div>
  84. <div class="stationInfo">
  85. <div class="name">平均风速</div>
  86. <div class="nums">
  87. <!-- {{
  88. $store.state.titleInfo.stationOverviewInfos[
  89. item[0].stationId
  90. ]?.averageWindSpeed?.value.toFixed(2)
  91. }}m/s -->
  92. {{getseeting($store.state.titleInfo.stationOverviewInfos, item[0], 'wind')}}m/s
  93. </div>
  94. </div>
  95. </div>
  96. <div class="stationTitle" v-else>
  97. <div class="stationName">
  98. {{getStationName(item)}}
  99. </div>
  100. <div class="num">
  101. <div class="jrts">接入台数</div>
  102. <!-- <div class="jrts_num">{{ item.length }}</div> -->
  103. <div class="jrts_num">{{ getStatus(item, 'jr') }}</div>
  104. </div>
  105. <div class="num">
  106. <div class="djts">待机台数</div>
  107. <div class="djts_num">
  108. <!-- {{ item.filter((val) => val.status === 2)?.length }} -->
  109. <div class="jrts_num">{{ getStatus(item, 'dj') }}</div>
  110. </div>
  111. </div>
  112. <div class="num">
  113. <div class="bwts">并网台数</div>
  114. <div class="bwts_num">
  115. <!-- {{ item.filter((val) => val.status === 4)?.length }} -->
  116. <div class="jrts_num">{{ getStatus(item, 'bw') }}</div>
  117. </div>
  118. </div>
  119. <div class="num">
  120. <div class="gzts">故障台数</div>
  121. <div class="gzts_num">
  122. <!-- {{ item.filter((val) => val.status === 5)?.length }} -->
  123. <div class="jrts_num">{{ getStatus(item, 'gz') }}</div>
  124. </div>
  125. </div>
  126. <div class="num">
  127. <div class="jxts">离线台数</div>
  128. <div class="jxts_num">
  129. <!-- {{ item.filter((val) => val.status === 6)?.length }} -->
  130. <div class="jrts_num">{{ getStatus(item, 'lx') }}</div>
  131. </div>
  132. </div>
  133. <div class="num">
  134. <div class="lxts">维护台数</div>
  135. <div class="lxts_num">
  136. <!-- {{ item.filter((val) => val.status === 7)?.length }} -->
  137. <div class="jrts_num">{{ getStatus(item, 'wh') }}</div>
  138. </div>
  139. </div>
  140. <div class="num">
  141. <div class="gzts">限电台数</div>
  142. <div class="gzts_num">
  143. <!-- {{ item.filter((val) => val.status === 7)?.length }} -->
  144. <div class="jrts_num">{{ getStatus(item, 'xd') }}</div>
  145. </div>
  146. </div>
  147. <div class="num">
  148. <div class="gzts">限电停机台数</div>
  149. <div class="gzts_num">
  150. <!-- {{ item.filter((val) => val.status === 5)?.length }} -->
  151. <div class="jrts_num">{{ getStatus(item, 'xdtj') }}</div>
  152. </div>
  153. </div>
  154. <div class="num">
  155. <div class="lxts">未知台数</div>
  156. <div class="lxts_num">
  157. <!-- {{ item.filter((val) => val.status === 6)?.length }} -->
  158. <div class="jrts_num">{{ getStatus(item, 'wz') }}</div>
  159. </div>
  160. </div>
  161. <div class="stationInfo">
  162. <div class="name">实时功率</div>
  163. <div class="nums">
  164. {{
  165. $store.state.titleInfo.stationOverviewInfos[
  166. item[0].station
  167. ]?.realTimePower?.value.toFixed(2)
  168. }}MW
  169. </div>
  170. </div>
  171. <div class="stationInfo">
  172. <div class="name">日照强度</div>
  173. <div class="nums">
  174. {{
  175. $store.state.titleInfo.stationOverviewInfos[
  176. item[0].station
  177. ]?.averageWindSpeed?.value.toFixed(2)
  178. }}KW/㎡
  179. </div>
  180. </div>
  181. </div>
  182. <div class="block" v-if="showWh(item)">
  183. <UnpaidMatrixBlock @on-click="handleDetial" @choose-click="handleClick" :dataList="item">
  184. </UnpaidMatrixBlock>
  185. </div>
  186. <div class="block" v-else>
  187. <UnpaidMatrixBlockPv @on-click="handleDetialPv" @choose-click="handleClickPv" :dataList="item">
  188. </UnpaidMatrixBlockPv>
  189. </div>
  190. </div>
  191. </box-select>
  192. </div>
  193. </div>
  194. <WindturbineDetailPages v-model="dialogVisible" @close="handleClose" :windturbine="currentWindturbine">
  195. </WindturbineDetailPages>
  196. <PvDetailPages v-model="dialogPvDia" @close="handleClose" :windturbine="currentWindturbinePv">
  197. </PvDetailPages>
  198. <ParametersContrast :chooseList="chooseList" v-model="parametersDisplay"></ParametersContrast>
  199. </el-dialog>
  200. </template>
  201. <script>
  202. import BackgroundData from "utils/BackgroundData";
  203. import UnpaidMatrixBlock from "components/unpaidMatrixBlock.vue";
  204. import UnpaidMatrixBlockPv from "components/unpaidMatrixBlockPv.vue";
  205. import WindturbineDetailPages from "components/WindturbineDetailPages.vue";
  206. import PvDetailPages from "components/PvDetailPages.vue";
  207. import boxSelect from "components/boxSelect.vue";
  208. import ParametersContrast from "./control/parametersContrast.vue";
  209. import MessageBridge from "../utils/MessageBridge";
  210. import api from "api/index";
  211. export default {
  212. components: {
  213. UnpaidMatrixBlock,
  214. UnpaidMatrixBlockPv,
  215. WindturbineDetailPages,
  216. PvDetailPages,
  217. boxSelect,
  218. ParametersContrast,
  219. },
  220. data() {
  221. return {
  222. current: "all",
  223. windterbin: {},
  224. stationObj: {},
  225. cache: {},
  226. stationArr: [],
  227. dialogVisible: false,
  228. dialogPvDia: false,
  229. currentWindturbine: {},
  230. currentWindturbinePv: {},
  231. chooseList: [],
  232. lockValues: [],
  233. parametersDisplay: false,
  234. intervals: null,
  235. showpieColor: [
  236. {
  237. name: '×5: 0%~5%',
  238. value: '#57cf3a'
  239. },
  240. {
  241. name: '×4: 5%~10%',
  242. value: '#0ec7dc'
  243. },
  244. {
  245. name: '×3: 10%~20%',
  246. value: '#1974ff'
  247. },
  248. {
  249. name: '×2: 20%~40%',
  250. value: '#cd4cdd'
  251. },
  252. {
  253. name: '×1: >40%',
  254. value: '#ff3c80'
  255. },
  256. ]
  257. };
  258. },
  259. created() {
  260. this.getLocks();
  261. },
  262. mounted() { },
  263. methods: {
  264. showWh(item) {
  265. let show = false
  266. if (item[0].stationId) {
  267. show = true
  268. }
  269. return show
  270. },
  271. getStatus(item, type) {
  272. let num = 0
  273. if (item[0].stationId) {
  274. if (type === 'jr') {
  275. num = item.length
  276. } else if (type === 'dj') {
  277. num = item.filter((val) => val.status === 2)?.length
  278. } else if (type === 'bw') {
  279. num = item.filter((val) => val.status === 4)?.length
  280. } else if (type === 'gz') {
  281. num = item.filter((val) => val.status === 5)?.length
  282. } else if (type === 'jx') {
  283. num = item.filter((val) => val.status === 6)?.length
  284. } else if (type === 'lx') {
  285. num = item.filter((val) => val.status === 7)?.length
  286. }
  287. } else {
  288. if (type === 'jr') {
  289. num = item.length
  290. } else if (type === 'dj') {
  291. num = item.filter((val) => val.status === 0)?.length
  292. } else if (type === 'bw') {
  293. num = item.filter((val) => val.status === 1)?.length
  294. } else if (type === 'gz') {
  295. num = item.filter((val) => val.status === 2)?.length
  296. } else if (type === 'lx') {
  297. num = item.filter((val) => val.status === 3)?.length
  298. } else if (type === 'wh') {
  299. num = item.filter((val) => val.status === 4)?.length
  300. } else if (type === 'xd') {
  301. num = item.filter((val) => val.status === 5)?.length
  302. } else if (type === 'xdtj') {
  303. num = item.filter((val) => val.status === 6)?.length
  304. } else if (type === 'wz') {
  305. num = item.filter((val) => val.status === -1)?.length
  306. }
  307. }
  308. return num
  309. },
  310. getStationName(item) {
  311. let name = ''
  312. if (item[0]) {
  313. this.stationList.forEach(val =>{
  314. if (item[0].stationId) {
  315. if (item[0].stationId === val.id) {
  316. name = val.name
  317. }
  318. } else if (item[0].station) {
  319. if (item[0].station === val.id) {
  320. name = val.name
  321. }
  322. }
  323. })
  324. }
  325. return name
  326. },
  327. getseeting(arr, item, type) {
  328. let num = ''
  329. if (arr[item.stationId]) {
  330. if (arr[item.stationId].realTimePower) {
  331. if (type === 'power') {
  332. num = arr[item.stationId].realTimePower.value.toFixed(2)
  333. } else {
  334. num = arr[item.stationId].averageWindSpeed.value.toFixed(2)
  335. }
  336. }
  337. }
  338. return num
  339. },
  340. opened() {
  341. let stationList = [
  342. {
  343. id: "all",
  344. name: "全部",
  345. },
  346. ];
  347. let stations = this.$store.state.stationList;
  348. stations.forEach((item) => {
  349. if (item.id.indexOf("FDC") != -1 || item.id.indexOf("GDC") != -1) {
  350. stationList.push(item);
  351. this.stationObj[item.id] = [];
  352. }
  353. });
  354. this.stationList = stationList;
  355. this.handleWindturbineChange();
  356. // this.intervals = setInterval(this.handleWindturbineChange, 3000);
  357. },
  358. closed() {
  359. this.chooseList = [];
  360. clearInterval(this.intervals);
  361. this.intervals = null;
  362. },
  363. handleChange(val) {
  364. let stationArr = [];
  365. this.current = val;
  366. let stationObj = {};
  367. let stations = this.$store.state.stationList;
  368. stations.forEach((item) => {
  369. if (val === "all") {
  370. if (item.id.indexOf("FDC") != -1 || item.id.indexOf("GDC") != -1) {
  371. stationObj[item.id] = [];
  372. }
  373. } else if (item.id === val) {
  374. stationObj[item.id] = [];
  375. }
  376. });
  377. if (val === "all") {
  378. stationObj = this.cache;
  379. } else {
  380. stationObj[val] = this.cache[val];
  381. }
  382. let list = Object.keys(stationObj).sort();
  383. for (const id of list) {
  384. stationArr.push(stationObj[id]);
  385. }
  386. this.stationObj = stationObj;
  387. this.stationArr = stationArr;
  388. console.log('stationArr======>>>>>', this.stationArr)
  389. debugger
  390. },
  391. //风场回调
  392. handleDetial(itm) {
  393. this.dialogVisible = true;
  394. this.currentWindturbine = itm;
  395. },
  396. handleClick(values) {
  397. if (values.active) {
  398. let showIndex = null;
  399. this.chooseList.forEach((item, index) => {
  400. if (item.windturbineId === values.windturbineId) {
  401. showIndex = index;
  402. }
  403. });
  404. this.chooseList.splice(showIndex, 1);
  405. } else {
  406. this.chooseList.push(values);
  407. }
  408. this.stationArr.forEach((item) => {
  409. item.forEach((val) => {
  410. if (val.windturbineId === values.windturbineId) {
  411. val.active = !val.active;
  412. }
  413. });
  414. });
  415. },
  416. handleClose() {
  417. this.dialogVisible = false;
  418. this.getLocks();
  419. },
  420. //光伏回调
  421. handleDetialPv(item) {
  422. this.dialogPvDia = true;
  423. this.currentWindturbinePv = item;
  424. console.log('item', item)
  425. },
  426. handleClickPv(values) {
  427. if (values.active) {
  428. let showIndex = null;
  429. this.chooseList.forEach((item, index) => {
  430. if (item.id === values.id) {
  431. showIndex = index;
  432. }
  433. });
  434. this.chooseList.splice(showIndex, 1);
  435. } else {
  436. this.chooseList.push(values);
  437. }
  438. this.stationArr.forEach((item) => {
  439. item.forEach((val) => {
  440. if (val.id === values.id) {
  441. val.active = !val.active;
  442. }
  443. });
  444. });
  445. },
  446. handleClosePv() {
  447. this.dialogPvDia = false;
  448. },
  449. selectList(val) {
  450. val.forEach((item) => {
  451. this.handleClick(this.windterbin[item.id]);
  452. });
  453. },
  454. getLocks() {
  455. api.getCustomerLock().then((res) => {
  456. if (res) {
  457. this.lockValues = res.data;
  458. }
  459. });
  460. },
  461. /* 右键菜单 */
  462. contextmenu() {
  463. const remote = require("electron").remote;
  464. let that = this;
  465. let menuTemplate = [];
  466. menuTemplate = [
  467. {
  468. label: "启动",
  469. click() {
  470. that.sendCommand({ controlType: "1", deviceType: "Manual" });
  471. },
  472. },
  473. {
  474. label: "停机",
  475. click() {
  476. that.sendCommand({ controlType: "2", deviceType: "Manual" });
  477. },
  478. },
  479. {
  480. label: "复位",
  481. click() {
  482. that.sendCommand({ controlType: "5", deviceType: "Manual" });
  483. },
  484. },
  485. {
  486. label: "维护",
  487. click() {
  488. that.sendCommand({ controlType: "6", deviceType: "Manual" });
  489. },
  490. },
  491. {
  492. label: "取消维护",
  493. click() {
  494. that.sendCommand({ controlType: "8", deviceType: "Manual" });
  495. },
  496. },
  497. {
  498. label: "挂牌",
  499. submenu: [
  500. {
  501. label: "检修",
  502. click() {
  503. that.sendLock({ value: "CheckLock" });
  504. },
  505. },
  506. {
  507. label: "故障维修",
  508. click() {
  509. that.sendLock({ value: "FaultLock" });
  510. },
  511. },
  512. {
  513. label: "场内受累检修",
  514. click() {
  515. that.sendLock({ value: "StationCheckLock" });
  516. },
  517. },
  518. {
  519. label: "场内受累故障",
  520. click() {
  521. that.sendLock({ value: "StationFaulLock" });
  522. },
  523. },
  524. {
  525. label: "场外受累电网",
  526. click() {
  527. that.sendLock({ value: "StationPowerLineLock" });
  528. },
  529. },
  530. {
  531. label: "场外受累天气",
  532. click() {
  533. that.sendLock({ value: "StationWeatherLock" });
  534. },
  535. },
  536. ],
  537. },
  538. {
  539. label: "取消挂牌",
  540. click() {
  541. that.sendLock({ value: "UnLock" });
  542. },
  543. },
  544. {
  545. label: "参数对比",
  546. click() {
  547. that.parametersContrast();
  548. },
  549. },
  550. ];
  551. const menu = remote.Menu.buildFromTemplate(menuTemplate);
  552. menu.popup(remote.getCurrentWindow());
  553. },
  554. sendCommand(msg, windturbine) {
  555. let bd = BackgroundData.getInstance();
  556. if (!bd.LoginUser) {
  557. this.$notify({
  558. title: "请登录",
  559. message: "控制风机需要先登录!",
  560. type: "warning",
  561. position: "bottom-right",
  562. offset: 60,
  563. duration: 3000,
  564. });
  565. return;
  566. }
  567. let sendList = [];
  568. if (windturbine) {
  569. sendList = windturbine;
  570. } else {
  571. this.chooseList.forEach((item) => {
  572. item.controlType = Number(msg.controlType);
  573. });
  574. sendList = this.chooseList;
  575. }
  576. if (sendList.length > 0) {
  577. bd.checkout(sendList);
  578. this.chooseList = [];
  579. let pairs = {};
  580. sendList.forEach((item) => {
  581. let ct = {
  582. windturbineId: item.windturbineId,
  583. stationId: item.stationId,
  584. projectId: item.projectId,
  585. modelId: item.modelId,
  586. controlType: item.controlType,
  587. lockType: item.lockType,
  588. userName: `system_${bd.LoginUser.name}`,
  589. userId: 0,
  590. auto: false,
  591. deviceType: msg.deviceType,
  592. };
  593. pairs[ct.windturbineId] = ct;
  594. });
  595. api.windturbControl(pairs).then((res) => {
  596. if (res) {
  597. this.controlSuccess(res);
  598. }
  599. });
  600. }
  601. },
  602. sendLock(msg, windturbine) {
  603. let bd = BackgroundData.getInstance();
  604. if (!bd.LoginUser) {
  605. this.$notify({
  606. title: "请登录",
  607. message: "控制风机需要先登录!",
  608. type: "warning",
  609. position: "bottom-right",
  610. offset: 60,
  611. duration: 3000,
  612. });
  613. return;
  614. }
  615. let sendList = [];
  616. if (windturbine) {
  617. windturbine.lockType = msg.value;
  618. sendList.push(windturbine);
  619. } else {
  620. this.chooseList.forEach((item) => {
  621. item.lockType = msg.value;
  622. });
  623. sendList = this.chooseList;
  624. }
  625. if (sendList.length > 0) {
  626. this.chooseList = [];
  627. let pairs = {};
  628. sendList.forEach((item) => {
  629. let ct = {
  630. windturbineId: item.windturbineId,
  631. stationId: item.stationId,
  632. projectId: item.projectId,
  633. modelId: item.modelId,
  634. controlType: item.controlType,
  635. lockType: item.lockType,
  636. userName: `system_${bd.LoginUser.name}`,
  637. userId: 0,
  638. };
  639. pairs[ct.windturbineId] = ct;
  640. });
  641. api.windturbControlLock(pairs).then((res) => {
  642. if (res) {
  643. this.controlSuccess(res);
  644. }
  645. });
  646. }
  647. },
  648. /* 控制成功 */
  649. controlSuccess(msg) {
  650. let bd = BackgroundData.getInstance();
  651. for (let id in msg.data) {
  652. let val = msg.data[id];
  653. if (val.errorCode !== "0") {
  654. bd.removeCheckouts(val);
  655. }
  656. }
  657. let mss = ""; // 信息
  658. let iserror = false; // 是否有控制错误的风机
  659. for (let v in msg.data) {
  660. let val = msg.data[v];
  661. if (val.errorCode > 0) {
  662. iserror = true;
  663. mss += `${val.windturbineId} ${this.controlErorCodes[val.errorCode]
  664. }\n`;
  665. }
  666. }
  667. let tp = iserror ? "warning" : "success";
  668. // if (!iserror) {
  669. // mss = "控制成功";
  670. // }
  671. this.$notify({
  672. title: "控制",
  673. message: mss,
  674. type: tp,
  675. position: "bottom-right",
  676. offset: 60,
  677. duration: 3000,
  678. });
  679. },
  680. /* 控制失败 */
  681. controlError(err) {
  682. this.$notify({
  683. title: "控制出现错误",
  684. message: err.message,
  685. type: "warning",
  686. position: "bottom-right",
  687. offset: 60,
  688. duration: 3000,
  689. });
  690. },
  691. parametersContrast() {
  692. if (this.chooseList.length > 0) {
  693. this.parametersDisplay = true;
  694. }
  695. },
  696. getPvMsg(msg) {
  697. window.sessionStorage.removeItem('pv')
  698. // let jsonMsg = JSON.parse(msg)
  699. window.sessionStorage.setItem('pv', msg)
  700. this.changeData()
  701. },
  702. getWindMsg(msg) {
  703. window.sessionStorage.removeItem('wind')
  704. // let jsonMsg = JSON.parse(msg)
  705. window.sessionStorage.setItem('wind', msg)
  706. this.changeData()
  707. },
  708. changeData() {
  709. let wswind = JSON.parse(window.sessionStorage.getItem('wind'))
  710. let pv = JSON.parse(window.sessionStorage.getItem('pv'))
  711. let msg = {}
  712. if (wswind && pv) {
  713. msg = {...wswind, ...pv}
  714. let stationArr = [];
  715. for (const key in this.stationObj) {
  716. this.stationObj[key] = [];
  717. }
  718. this.windterbin = msg;
  719. // let arr = Object.keys(msg).sort();
  720. let arr = Object.keys(msg);
  721. for (const id of arr) {
  722. let val = msg[id];
  723. //风机
  724. if (val.stationId) {
  725. if (val.lockValue === 9) {
  726. val.lockValues = this.lockValues.filter(
  727. (item) => val.windturbineId === item.windturbineID
  728. )[0]?.value;
  729. }
  730. this.chooseList.forEach((item) => {
  731. if (item.windturbineId === val.windturbineId) {
  732. val.active = true;
  733. }
  734. });
  735. if (this.current === "all") {
  736. this.stationObj[val.stationId]?.push(val);
  737. } else {
  738. if (this.current === val.stationId) {
  739. this.stationObj[val.stationId]?.push(val);
  740. }
  741. }
  742. }
  743. // 光伏
  744. if(val.station) {
  745. if (this.current === "all") {
  746. this.stationObj[val.station]?.push(val);
  747. } else {
  748. if (this.current === val.station) {
  749. this.stationObj[val.station]?.push(val);
  750. }
  751. }
  752. this.chooseList.forEach((item) => {
  753. if (item.id === val.id) {
  754. val.active = true;
  755. }
  756. });
  757. }
  758. }
  759. this.current === "all" &&
  760. (this.cache = JSON.parse(JSON.stringify(this.stationObj)));
  761. // let list = Object.keys(this.stationObj).sort();
  762. let list = Object.keys(this.stationObj);
  763. for (const id of list) {
  764. stationArr.push(this.stationObj[id]);
  765. }
  766. // this.stationArr = stationArr;
  767. this.stationArr = this.sortStarionArr(stationArr);
  768. }
  769. },
  770. // 按照场站排序
  771. sortStarionArr(arr) {
  772. let newArr = []
  773. for (let i = 0; i<this.stationList.length; i++) {
  774. let item = this.stationList[i]
  775. for (let j = 0; j<arr.length; j++) {
  776. let itn = arr[j]
  777. if (itn[0].stationId && itn[0].stationId === item.id) {
  778. newArr.push(itn)
  779. } else if (itn[0].station && itn[0].station === item.id) {
  780. newArr.push(itn)
  781. }
  782. }
  783. }
  784. return newArr
  785. },
  786. handleWindturbineChange() {
  787. let ws = MessageBridge.getInstance();
  788. let wind = [
  789. { key: "/topic/windturbine", action: this.getWindMsg },
  790. ];
  791. let guangfu = [
  792. { key: "/topic/pv", action: this.getPvMsg },
  793. ];
  794. ws.register(wind);
  795. ws.register(guangfu);
  796. // api.getWindturbine().then((res) => {
  797. // if (res.data) {
  798. // let stationArr = [];
  799. // for (const key in this.stationObj) {
  800. // this.stationObj[key] = [];
  801. // }
  802. // this.windterbin = res.data;
  803. // let arr = Object.keys(res.data).sort();
  804. // for (const id of arr) {
  805. // let val = res.data[id];
  806. // if (val.lockValue === 9) {
  807. // val.lockValues = this.lockValues.filter(
  808. // (item) => val.windturbineId === item.windturbineID
  809. // )[0]?.value;
  810. // }
  811. // this.chooseList.forEach((item) => {
  812. // if (item.windturbineId === val.windturbineId) {
  813. // val.active = true;
  814. // }
  815. // });
  816. // if (this.current === "all") {
  817. // this.stationObj[val.stationId]?.push(val);
  818. // } else {
  819. // if (this.current === val.stationId) {
  820. // this.stationObj[val.stationId]?.push(val);
  821. // }
  822. // }
  823. // }
  824. // this.current === "all" &&
  825. // (this.cache = JSON.parse(JSON.stringify(this.stationObj)));
  826. // let list = Object.keys(this.stationObj).sort();
  827. // for (const id of list) {
  828. // stationArr.push(this.stationObj[id]);
  829. // }
  830. // this.stationArr = stationArr;
  831. // }
  832. // });
  833. },
  834. },
  835. };
  836. </script>
  837. <style lang="less" scoped>
  838. .body {
  839. display: flex;
  840. flex-direction: column;
  841. background-color: #000000;
  842. height: 90vh;
  843. width: 102%;
  844. margin-left: -1%;
  845. margin-top: -40px;
  846. overflow-y: auto;
  847. }
  848. .body::-webkit-scrollbar {
  849. /*隐藏滚轮*/
  850. display: none;
  851. }
  852. .titleList {
  853. display: flex;
  854. flex-direction: row;
  855. align-items: center;
  856. justify-content: space-between;
  857. margin-left: 3vw;
  858. padding-top: 8px;
  859. position: absolute;
  860. width: 96%;
  861. background-color: #000000;
  862. padding-bottom: 10px;
  863. .infoMsg{
  864. display: flex;
  865. border-radius: 10px;
  866. height: 34px;
  867. padding: 0 10px;
  868. margin-right: 20px;
  869. position: relative;
  870. top: 5px;
  871. .infoTitle{
  872. position: relative;
  873. top: 2px;
  874. color: #fff;
  875. font-weight: 600;
  876. padding: 0 10px;
  877. span{
  878. margin-right: 10px;
  879. }
  880. }
  881. .infoMainCV{
  882. .colorLine{
  883. width:25px;
  884. height:14px;
  885. border-radius:3px;
  886. display:inline-block;
  887. margin-top:2px;
  888. position: relative;
  889. top: 3px;
  890. }
  891. .colorValue{
  892. font-size: 12px;
  893. margin: 0 15px 0 5px;
  894. color: #fff;
  895. }
  896. }
  897. .infoMain{
  898. padding: 0 20px;
  899. color: #fff;
  900. .infoMain_top{
  901. display: flex;
  902. justify-content: end;
  903. .whiteBox{
  904. display: inline-block;
  905. width: 15px;
  906. height: 5px;
  907. background: #fff;
  908. position: relative;
  909. top: 5px;
  910. }
  911. .infoMainMsg{
  912. }
  913. }
  914. .infoMain_bot{
  915. position: relative;
  916. top: -3px;
  917. }
  918. }
  919. .item9 {
  920. background-color: rgba(05, 187, 76, 1);
  921. }
  922. .item8 {
  923. background-color: #0ec7dc;
  924. }
  925. .item7 {
  926. background-color: rgba(75, 85, 174, 1);
  927. }
  928. .item6 {
  929. background-color: rgba(225, 125, 36, 1);
  930. }
  931. .item5 {
  932. background-color: rgba(186, 50, 55, 1);
  933. }
  934. }
  935. }
  936. .title {
  937. display: flex;
  938. flex-direction: row;
  939. align-items: center;
  940. .title-item {
  941. background-color: #242424;
  942. border-radius: 4px;
  943. padding: 8px 27px 7px 25px;
  944. font-size: 14px;
  945. color: #b4bdc0;
  946. margin-right: 10px;
  947. }
  948. .title-onItem {
  949. background-color: rgba(37, 116, 219, 1);
  950. border-radius: 4px;
  951. padding: 8px 27px 7px 25px;
  952. font-size: 14px;
  953. color: #b4bdc0;
  954. margin-right: 10px;
  955. }
  956. }
  957. .content {
  958. display: flex;
  959. flex-direction: column;
  960. margin-top: 50px;
  961. }
  962. .block {
  963. padding-left: 10px;
  964. }
  965. .windStation {
  966. display: flex;
  967. flex-direction: column;
  968. background-color: #242424;
  969. border-radius: 4px;
  970. width: 95%;
  971. margin-left: 3vw;
  972. padding-bottom: 20px;
  973. padding-left: 10px;
  974. margin-bottom: 20px;
  975. .stationTitle {
  976. display: flex;
  977. flex-direction: row;
  978. // align-items: center;
  979. margin-top: 10px;
  980. .stationName {
  981. font-size: 14px;
  982. margin-left: 10px;
  983. color: #b4bdc0;
  984. }
  985. .num {
  986. display: flex;
  987. flex-direction: row;
  988. align-items: center;
  989. justify-content: space-between;
  990. margin-left: 25px;
  991. width: 90px;
  992. .jrts {
  993. font-size: 12px;
  994. color: #606769;
  995. }
  996. .jrts_num {
  997. font-size: 16px;
  998. color: #ffffff;
  999. }
  1000. .djts {
  1001. font-size: 12px;
  1002. color: #05bb4c;
  1003. }
  1004. .djts_num {
  1005. font-size: 16px;
  1006. color: #05bb4c;
  1007. }
  1008. .bwts {
  1009. font-size: 12px;
  1010. color: #4b55ae;
  1011. }
  1012. .bwts_num {
  1013. font-size: 16px;
  1014. color: #4b55ae;
  1015. }
  1016. .gzts {
  1017. font-size: 12px;
  1018. color: #ba3237;
  1019. }
  1020. .gzts_num {
  1021. font-size: 16px;
  1022. color: #ba3237;
  1023. }
  1024. .jxts {
  1025. font-size: 12px;
  1026. color: #e17d24;
  1027. }
  1028. .jxts_num {
  1029. font-size: 16px;
  1030. color: #e17d24;
  1031. }
  1032. .lxts {
  1033. font-size: 12px;
  1034. color: #606769;
  1035. }
  1036. .lxts_num {
  1037. font-size: 16px;
  1038. color: #606769;
  1039. }
  1040. }
  1041. }
  1042. .stationInfo {
  1043. display: flex;
  1044. flex-direction: row;
  1045. align-items: center;
  1046. margin-left: 30px;
  1047. font-size: 16px;
  1048. .name {
  1049. color: #ffffff;
  1050. margin-right: 25px;
  1051. }
  1052. .nums {
  1053. color: #05bb4c;
  1054. }
  1055. }
  1056. }
  1057. .item2 {
  1058. flex: 1;
  1059. display: flex;
  1060. width: 20%;
  1061. flex-wrap: wrap;
  1062. .name {
  1063. color: #fff;
  1064. width: 50%;
  1065. text-align: center;
  1066. }
  1067. .num2 {
  1068. width: 50%;
  1069. color: #fff;
  1070. text-align: left;
  1071. }
  1072. .num1 {
  1073. width: 50%;
  1074. color: #fff;
  1075. text-align: center;
  1076. position: relative;
  1077. &::after {
  1078. content: "";
  1079. position: absolute;
  1080. width: 1.481vh;
  1081. height: 0.556vh;
  1082. background-color: #fff;
  1083. left: 1.204vh;
  1084. top: 0.741vh;
  1085. }
  1086. }
  1087. .num3 {
  1088. width: 50%;
  1089. color: #fff;
  1090. text-align: left;
  1091. }
  1092. }
  1093. </style>