index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. <template>
  2. <div style="height: 100%">
  3. <!-- <div class="wtname">
  4. :class="colorList[wtInfo.status]" <div class="wt-status"></div>
  5. <div class="wt-text">{{ wtname }}</div>
  6. </div>-->
  7. <div
  8. class="wt-top"
  9. :class="colorFlag ? colorList1[wtInfo.status] : colorList[wtInfo.status]"
  10. >
  11. <div class="wt-text">设备名称:{{ wtname }}</div>
  12. <div class="wt-alarm" @click="handleAlarm(wtInfo)">
  13. <i
  14. class="svg-icon svg-icon-sm"
  15. :class="
  16. 'svg-icon-' +
  17. (colorFlag ? colorList1[wtInfo.status] : colorList[wtInfo.status])
  18. "
  19. >
  20. <svgIcon svgid="svg-station-surveillance"></svgIcon>
  21. </i>
  22. <span>设备报警</span>
  23. </div>
  24. </div>
  25. <div class="part-info">
  26. <div class="part-body">
  27. <div class="monitoring-item">
  28. <div class="point point-left bottom"></div>
  29. <div class="point point-right bottom"></div>
  30. 遥信值
  31. </div>
  32. <div class="part-item">
  33. <div
  34. class="part"
  35. :class="{ active: index % 2 === 1 }"
  36. v-for="(val, index) in currentPartD"
  37. :key="index"
  38. >
  39. <div class="table-item" v-for="(item, ind) in val" :key="ind">
  40. <div>{{ item.name }}</div>
  41. <div
  42. class="table-value"
  43. :class="item.value == 1 ? 'round-red' : 'round'"
  44. ></div>
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. <div class="part-body">
  50. <div class="monitoring-item">
  51. <div class="point point-left bottom"></div>
  52. <div class="point point-right bottom"></div>
  53. 遥测值
  54. </div>
  55. <div class="part-item">
  56. <div
  57. class="part"
  58. :class="{ active: index % 2 === 1 }"
  59. v-for="(val, index) in currentPartA"
  60. :key="index"
  61. >
  62. <div class="table-item" v-for="(item, ind) in val" :key="ind">
  63. <div>{{ item.name }}</div>
  64. <div class="table-value">
  65. {{ Number(item.value).toFixed(2) }}
  66. <div class="unit">{{ item.valueUnit }}</div>
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. </div>
  72. </div>
  73. <alarmDialog ref="alarmDialog" />
  74. </div>
  75. </template>
  76. <script>
  77. import { GetWtTelemeteryInfo } from "@/api/factoryMonitor/index.js";
  78. import { GetWtPoints, GetPointsData } from "@/api/points/index.js";
  79. import svgIcon from "@/components/coms/icon/svg-icon.vue";
  80. import alarmDialog from "@/components/alarm";
  81. export default {
  82. name: "lightDetail",
  83. components: { svgIcon, alarmDialog },
  84. props: {
  85. stationName: {
  86. type: String,
  87. },
  88. leftcellHeight: {
  89. type: String,
  90. default: "4vh",
  91. },
  92. rightcellHeight: {
  93. type: String,
  94. default: "3.25vh",
  95. },
  96. partHeight: {
  97. type: String,
  98. default: "15vh",
  99. },
  100. wind: {
  101. type: Object,
  102. default: () => {},
  103. },
  104. flag: {
  105. type: Boolean,
  106. default: false,
  107. },
  108. },
  109. data() {
  110. return {
  111. wtname: "",
  112. wtInfo: {},
  113. colorList: [
  114. "blue",
  115. "blue",
  116. "green",
  117. "green",
  118. "red",
  119. "red",
  120. "orange",
  121. "orange",
  122. "pink",
  123. "pink",
  124. "write",
  125. "write",
  126. "gray",
  127. "gray",
  128. ],
  129. colorList1: ["blue", "green", "red", "orange", "pink", "write", "gray"],
  130. partAInfo: [],
  131. partDInfo: [],
  132. partAInfos: [],
  133. partDInfos: [],
  134. uniformcodesA: [],
  135. uniformcodesD: [],
  136. pointsA: [],
  137. pointsD: [],
  138. allPartInfo: [],
  139. currentPartA: [],
  140. currentPartD: [],
  141. lightCode: null,
  142. squareMsg: null,
  143. squareTelemeteringData: null,
  144. squareTelecommandData: null,
  145. inverterData: null,
  146. timer: "",
  147. colorFlag: false,
  148. wpid: "",
  149. };
  150. },
  151. mounted() {
  152. this.timer = setInterval(async () => {
  153. this.getPointsData();
  154. }, 5000);
  155. },
  156. unmounted() {
  157. clearInterval(this.timer);
  158. this.timer = null;
  159. },
  160. watch: {
  161. wind: {
  162. handler() {
  163. if (Object.keys(this.wind).length) {
  164. this.start(this.wind);
  165. }
  166. },
  167. },
  168. $route: {
  169. handler(val) {
  170. if (
  171. val.path.includes("lightmatrix") ||
  172. val.path.includes("photovoltaicFacility")
  173. ) {
  174. this.colorFlag = true;
  175. }
  176. },
  177. immediate: true,
  178. },
  179. },
  180. methods: {
  181. clear() {
  182. this.wtInfo = {};
  183. this.wtname = "";
  184. this.partAInfo = [];
  185. this.partDInfo = [];
  186. this.partAInfos = [];
  187. this.partDInfos = [];
  188. this.uniformcodesA = [];
  189. this.uniformcodesD = [];
  190. this.pointsA = [];
  191. this.pointsD = [];
  192. this.allPartInfo = [];
  193. this.currentPartA = [];
  194. this.currentPartD = [];
  195. },
  196. // 页面初始信息
  197. start(wt) {
  198. if (Object.keys(wt).length) {
  199. this.wtInfo = wt;
  200. this.wpid = wt.wpid;
  201. this.wtname = wt.wtname;
  202. this.getPartInfo(wt.wtid);
  203. } else {
  204. this.clear();
  205. }
  206. },
  207. // 统一编码
  208. getPartInfo(wtid) {
  209. if (this.wtInfo.wtType == -2) {
  210. if (wtid.length) {
  211. GetWtTelemeteryInfo({
  212. part: "nbq",
  213. wtid: wtid,
  214. }).then(({ data }) => {
  215. // 拿到初始获取数据
  216. this.partAInfo = data.data.AI;
  217. this.partDInfo = data.data.DI;
  218. // 拿到数据的uniformcode集合
  219. this.uniformcodesD = this.partDInfo.length
  220. ? this.partDInfo.map((item) => item.uniformCode)
  221. : [];
  222. this.uniformcodesA = this.partAInfo.length
  223. ? this.partAInfo.map((item) => item.uniformCode)
  224. : [];
  225. // 获取测点数据
  226. this.getPointsIds(wtid);
  227. });
  228. }
  229. }
  230. },
  231. getPointsIds(wtid) {
  232. let pointsIdsA = new Promise((resolve, reject) => {
  233. GetWtPoints({
  234. wtid: wtid,
  235. uniformcodes: this.uniformcodesA,
  236. })
  237. .then(({ data }) => {
  238. resolve(data);
  239. })
  240. .catch((e) => {
  241. reject("发生错误");
  242. });
  243. });
  244. let pointsIdsD = new Promise((resolve, reject) => {
  245. GetWtPoints({
  246. wtid: wtid,
  247. uniformcodes: this.uniformcodesD,
  248. })
  249. .then(({ data }) => {
  250. resolve(data);
  251. })
  252. .catch((e) => {
  253. // 标记失败后给定某个数据
  254. reject("发生错误");
  255. });
  256. });
  257. Promise.all([pointsIdsA, pointsIdsD])
  258. .then((results) => {
  259. this.pointsA = results[0].data.length
  260. ? results[0].data.map((item) => (item != null ? item.nemCode : ""))
  261. : [];
  262. this.pointsD = results[1].data.length
  263. ? results[1].data.map((item) => (item != null ? item.nemCode : ""))
  264. : [];
  265. this.getPointsData();
  266. })
  267. .catch((e) => {
  268. console.log("error", e);
  269. });
  270. },
  271. getPointsData() {
  272. let pointsDataA = new Promise((resolve, reject) => {
  273. GetPointsData({
  274. pointIds: this.pointsA,
  275. })
  276. .then(({ data }) => {
  277. resolve(data);
  278. })
  279. .catch((e) => {
  280. // 标记失败后给定某个数据
  281. reject("发生错误");
  282. });
  283. });
  284. let pointsDataD = new Promise((resolve, reject) => {
  285. GetPointsData({
  286. pointIds: this.pointsD,
  287. })
  288. .then(({ data }) => {
  289. resolve(data);
  290. })
  291. .catch((e) => {
  292. // 标记失败后给定某个数据
  293. reject("发生错误");
  294. });
  295. });
  296. Promise.all([pointsDataA, pointsDataD])
  297. .then((results) => {
  298. let pointsInfoA = results[0].data.length ? results[0].data : [];
  299. let pointsInfoD = results[1].data.length ? results[1].data : [];
  300. let partAInfos = [];
  301. let partDInfos = [];
  302. let chunk = 4;
  303. this.partAInfo.forEach((item, index) => {
  304. pointsInfoA.forEach((i, ind) => {
  305. if (index == ind) {
  306. item.value = i.pointValueInDouble;
  307. }
  308. });
  309. });
  310. for (let i = 0, j = this.partAInfo.length; i < j; i += chunk) {
  311. partAInfos.push(this.partAInfo.slice(i, i + chunk));
  312. }
  313. this.partDInfo.forEach((item, index) => {
  314. pointsInfoD.forEach((i, ind) => {
  315. if (index == ind) {
  316. item.value = i.pointValueInDouble;
  317. }
  318. });
  319. });
  320. for (let m = 0, n = this.partDInfo.length; m < n; m += chunk) {
  321. partDInfos.push(this.partDInfo.slice(m, m + chunk));
  322. }
  323. this.currentPartA = partAInfos;
  324. this.currentPartD = partDInfos;
  325. })
  326. .catch((e) => {
  327. // 失败的时候则返回最先被reject失败状态的值
  328. console.log("error", e);
  329. });
  330. },
  331. //打开报警页面
  332. handleAlarm(wtInfo) {
  333. this.$refs.alarmDialog &&
  334. this.$refs.alarmDialog.openDialog(
  335. wtInfo.wtid,
  336. this.wpid,
  337. this.wtInfo.wtType
  338. );
  339. },
  340. },
  341. };
  342. </script>
  343. <style lang="less" scoped>
  344. .wtname {
  345. height: 60px;
  346. background: rgba(96, 103, 105, 0.2);
  347. border-radius: 5px;
  348. display: flex;
  349. align-items: center;
  350. padding-left: 20px;
  351. color: #fff;
  352. .wt-status {
  353. width: 32px;
  354. height: 10px;
  355. margin: 0 20px;
  356. }
  357. .wt-text {
  358. font-size: 16px;
  359. }
  360. &.green {
  361. .wt-status {
  362. background: #05bb4c;
  363. }
  364. .wt-text {
  365. color: #05bb4c;
  366. }
  367. }
  368. &.blue {
  369. .wt-status {
  370. background: #3c88f7;
  371. }
  372. .wt-text {
  373. color: #3c88f7;
  374. }
  375. }
  376. &.pink {
  377. .wt-status {
  378. background: #c530c8;
  379. }
  380. .wt-text {
  381. color: #c530c8;
  382. }
  383. }
  384. &.red {
  385. .wt-status {
  386. background: #ba3237;
  387. }
  388. .wt-text {
  389. color: #ba3237;
  390. }
  391. }
  392. &.orange {
  393. .wt-status {
  394. background: #e17d24;
  395. }
  396. .wt-text {
  397. color: #e17d24;
  398. }
  399. }
  400. &.white {
  401. .wt-status {
  402. background: #fff;
  403. }
  404. .wt-text {
  405. color: #fff;
  406. }
  407. }
  408. &.gray {
  409. .wt-status {
  410. background: #606769;
  411. }
  412. .wt-text {
  413. color: #606769;
  414. }
  415. }
  416. }
  417. .wt-top {
  418. height: 60px;
  419. background: rgba(96, 103, 105, 0.2);
  420. border-radius: 5px;
  421. display: flex;
  422. align-items: center;
  423. padding-left: 20px;
  424. color: #fff;
  425. .wt-text {
  426. margin-right: 50px;
  427. }
  428. .wt-alarm {
  429. cursor: pointer;
  430. span {
  431. margin-left: 5px;
  432. }
  433. }
  434. &.green {
  435. color: #05bb4c;
  436. }
  437. &.blue {
  438. color: #3c88f7;
  439. }
  440. &.pink {
  441. color: #c530c8;
  442. }
  443. &.red {
  444. color: #ba3237;
  445. }
  446. &.orange {
  447. color: #e17d24;
  448. }
  449. &.white {
  450. color: #fff;
  451. }
  452. &.gray {
  453. color: #606769;
  454. }
  455. }
  456. .part-info {
  457. width: 100%;
  458. height: calc(100% - 60px);
  459. display: flex;
  460. flex-direction: column-reverse;
  461. .part-body {
  462. width: 100%;
  463. height: 50%;
  464. overflow: auto;
  465. padding-bottom: 20px;
  466. // background: rgba(11, 12, 12, 0.45);
  467. background: rgba(96, 103, 105, 0.2);
  468. border-radius: 5px;
  469. margin-top: 10px;
  470. display: flex;
  471. flex-direction: column;
  472. align-items: center;
  473. padding: 10px 0;
  474. .monitoring-item {
  475. position: relative;
  476. width: 98%;
  477. height: 42px;
  478. border-bottom: 1px solid #363b46;
  479. display: flex;
  480. align-items: center;
  481. padding-left: 20px;
  482. font-size: 16px;
  483. font-family: Microsoft YaHei;
  484. font-weight: 400;
  485. color: #ffffff;
  486. }
  487. .point {
  488. width: 8px;
  489. height: 1px;
  490. background-color: #ffffff;
  491. position: absolute;
  492. &.point-left {
  493. left: 0;
  494. }
  495. &.point-right {
  496. right: 0;
  497. }
  498. &.top {
  499. top: -1px;
  500. }
  501. &.bottom {
  502. bottom: -1px;
  503. }
  504. }
  505. .part-item {
  506. width: 100%;
  507. height: calc(100% - 42px);
  508. overflow-y: auto;
  509. }
  510. .part {
  511. width: 100%;
  512. display: flex;
  513. flex-direction: row;
  514. margin-top: 5px;
  515. font-size: 13px;
  516. font-family: Source Han Sans SC;
  517. font-weight: 400;
  518. color: #959595;
  519. padding: 0 10px;
  520. .table-item {
  521. width: 25%;
  522. font-size: 12px;
  523. display: flex;
  524. flex-direction: row;
  525. align-items: center;
  526. justify-content: space-between;
  527. height: 33px;
  528. font-size: 12px;
  529. font-family: Microsoft YaHei;
  530. font-weight: 400;
  531. color: #b3b3b3;
  532. padding: 0 0px;
  533. .table-value {
  534. display: flex;
  535. flex-direction: row;
  536. align-items: baseline;
  537. font-family: Arial;
  538. font-weight: 400;
  539. color: #05bb4c;
  540. margin-right: 25px;
  541. .unit {
  542. font-size: 12px;
  543. font-family: Source Han Sans SC;
  544. font-weight: 400;
  545. color: #606769;
  546. margin-left: 5px;
  547. width: 40px;
  548. }
  549. &.round {
  550. width: 8px;
  551. height: 8px;
  552. border-radius: 50%;
  553. background-color: #05bb4c;
  554. margin-right: 90px;
  555. }
  556. &.round-red {
  557. width: 8px;
  558. height: 8px;
  559. border-radius: 50%;
  560. background-color: red;
  561. margin-right: 90px;
  562. }
  563. }
  564. }
  565. &.active {
  566. background-color: rgba(83, 89, 104, 0.15);
  567. }
  568. }
  569. }
  570. }
  571. </style>