index.vue 15 KB

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