index.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020
  1. <template>
  2. <div class="bodys">
  3. <div class="edge" v-if="Object.keys(monitorInfo).length">
  4. <div class="info" style="position: relative">
  5. <div
  6. style="
  7. display: flex;
  8. width: 100%;
  9. align-items: center;
  10. margin-top: 10px;
  11. "
  12. >
  13. <div class="info-title" :class="colorList[monitorInfo.status]">
  14. <span class="text">设备名称: {{ windname }}</span>
  15. </div>
  16. <div class="wt-alarm" @click="handleAlarm(wtid)">
  17. <i
  18. class="svg-icon svg-icon-sm"
  19. :class="'svg-icon-' + colorList[monitorInfo.status]"
  20. >
  21. <svgIcon svgid="svg-station-surveillance"></svgIcon>
  22. </i>
  23. <span :class="colorList[monitorInfo.status]">设备报警</span>
  24. </div>
  25. </div>
  26. <div class="info-item">日发电量</div>
  27. <div class="info-value">
  28. {{ Number(monitorInfo?.rfdl).toFixed(2) || "0" }}
  29. <div class="unit">kWh</div>
  30. </div>
  31. </div>
  32. <div class="monitoring">
  33. <div class="monitoring-item">
  34. <div class="point point-left bottom"></div>
  35. <div class="point point-right bottom"></div>
  36. 监测信息
  37. </div>
  38. <div class="wind-info-list">
  39. <div class="wind-info">
  40. 风速
  41. <div class="wind-value">
  42. {{ Number(monitorInfo?.fs).toFixed(2) }}
  43. <div class="unit">m/s</div>
  44. </div>
  45. </div>
  46. <div class="wind-info">
  47. 风向
  48. <div class="wind-value">
  49. {{ Number(monitorInfo?.fx).toFixed(2) }}
  50. <div class="unit">°</div>
  51. </div>
  52. </div>
  53. <div class="wind-info">
  54. 实时功率
  55. <div class="wind-value">
  56. {{ Number(monitorInfo?.ssgl).toFixed(2) }}
  57. <div class="unit">kW</div>
  58. </div>
  59. </div>
  60. <div class="wind-info">
  61. 无功功率
  62. <div class="wind-value">
  63. {{ Number(monitorInfo?.wggl).toFixed(2) }}
  64. <div class="unit">kW</div>
  65. </div>
  66. </div>
  67. <div class="wind-info">
  68. 理论功率
  69. <div class="wind-value">
  70. {{ Number(monitorInfo?.llgl).toFixed(2) }}
  71. <div class="unit">kW</div>
  72. </div>
  73. </div>
  74. <div class="wind-info">
  75. 保证功率
  76. <div class="wind-value">
  77. {{ Number(monitorInfo?.bzgl).toFixed(2) }}
  78. <div class="unit">kW</div>
  79. </div>
  80. </div>
  81. <div class="wind-info">
  82. 叶轮转速
  83. <div class="wind-value">
  84. {{ Number(monitorInfo?.ylzs).toFixed(2) }}
  85. <div class="unit">rpm</div>
  86. </div>
  87. </div>
  88. <div class="wind-info">
  89. 故障损失
  90. <div class="wind-value">
  91. {{ Number(monitorInfo?.gzss).toFixed(2) }}
  92. <div class="unit">kWh</div>
  93. </div>
  94. </div>
  95. <div class="wind-info">
  96. 检修损失
  97. <div class="wind-value">
  98. {{ Number(monitorInfo?.jxss).toFixed(2) }}
  99. <div class="unit">kWh</div>
  100. </div>
  101. </div>
  102. <div class="wind-info">
  103. 限电损失
  104. <div class="wind-value">
  105. {{ Number(monitorInfo?.xdss).toFixed(2) }}
  106. <div class="unit">kWh</div>
  107. </div>
  108. </div>
  109. <div class="wind-info">
  110. 性能损失
  111. <div class="wind-value">
  112. {{ Number(monitorInfo?.xnss).toFixed(2) }}
  113. <div class="unit">kWh</div>
  114. </div>
  115. </div>
  116. <div class="wind-info">
  117. 受累损失
  118. <div class="wind-value">
  119. {{ Number(monitorInfo?.slss).toFixed(2) }}
  120. <div class="unit">kWh</div>
  121. </div>
  122. </div>
  123. </div>
  124. </div>
  125. </div>
  126. <div class="parts">
  127. <div class="part-top">
  128. <div class="part-title">
  129. <div
  130. class="title-item part-left"
  131. :class="{ active: current === 'fdj' }"
  132. @click="handleClick('fdj')"
  133. >
  134. 发电机
  135. </div>
  136. <div
  137. class="title-item"
  138. :class="{ active: current === 'clx' }"
  139. @click="handleClick('clx')"
  140. >
  141. 齿轮箱
  142. </div>
  143. <div
  144. class="title-item"
  145. :class="{ active: current === 'bj' }"
  146. @click="handleClick('bj')"
  147. >
  148. 变桨
  149. </div>
  150. <div
  151. class="title-item"
  152. :class="{ active: current === 'ph' }"
  153. @click="handleClick('ph')"
  154. >
  155. 偏航
  156. </div>
  157. <div
  158. class="title-item"
  159. :class="{ active: current === 'yy' }"
  160. @click="handleClick('yy')"
  161. >
  162. 液压
  163. </div>
  164. <div
  165. class="title-item"
  166. :class="{ active: current === 'jc' }"
  167. @click="handleClick('jc')"
  168. >
  169. 机舱信息
  170. </div>
  171. <div
  172. class="title-item part-right"
  173. :class="{ active: current === 'qt' }"
  174. @click="handleClick('qt')"
  175. >
  176. 其他
  177. </div>
  178. </div>
  179. <div class="part-imgs">
  180. <img
  181. v-if="current === 'fdj'"
  182. class="wind-part"
  183. :style="{ width: flag ? '650px' : '800px' }"
  184. src="@assets/imgs/fdj.png"
  185. />
  186. <img
  187. v-if="current === 'clx'"
  188. class="wind-part"
  189. :style="{ width: flag ? '650px' : '800px' }"
  190. src="@assets/imgs/clx.png"
  191. />
  192. <img
  193. v-if="current === 'bj'"
  194. class="wind-part"
  195. :style="{ width: flag ? '650px' : '800px' }"
  196. src="@assets/imgs/bj.png"
  197. />
  198. <img
  199. v-if="current === 'ph'"
  200. class="wind-part"
  201. :style="{ width: flag ? '650px' : '800px' }"
  202. src="@assets/imgs/ph.png"
  203. />
  204. <img
  205. v-if="current === 'yy'"
  206. class="wind-part"
  207. :style="{ width: flag ? '650px' : '800px' }"
  208. src="@assets/imgs/yy.png"
  209. />
  210. <img
  211. v-if="current === 'jc'"
  212. class="wind-part"
  213. :style="{ width: flag ? '650px' : '800px' }"
  214. src="@assets/imgs/jc.png"
  215. />
  216. <img
  217. v-if="current === 'qt'"
  218. class="wind-part"
  219. :style="{ width: flag ? '650px' : '800px' }"
  220. src="@assets/imgs/qt.png"
  221. />
  222. </div>
  223. </div>
  224. <div class="part-info">
  225. <div
  226. class="part-body"
  227. style="max-height: 220px"
  228. v-if="partDInfos.length"
  229. >
  230. <div class="monitoring-item">
  231. <div class="point point-left bottom"></div>
  232. <div class="point point-right bottom"></div>
  233. 遥信值
  234. </div>
  235. <div class="part-item">
  236. <div
  237. class="part"
  238. :class="{ active: index % 2 === 1 }"
  239. v-for="(val, index) in partDInfos"
  240. :key="index"
  241. >
  242. <div class="table-item" v-for="(item, ind) in val" :key="ind">
  243. <div>{{ item.name }}</div>
  244. <div
  245. class="table-value"
  246. :class="item.value == 1 ? 'round-red' : 'round'"
  247. ></div>
  248. </div>
  249. </div>
  250. </div>
  251. </div>
  252. <div
  253. class="part-body"
  254. style="max-height: 220px"
  255. v-if="partAInfos.length"
  256. >
  257. <div class="monitoring-item">
  258. <div class="point point-left bottom"></div>
  259. <div class="point point-right bottom"></div>
  260. 遥测值
  261. </div>
  262. <div class="part-item">
  263. <div
  264. class="part"
  265. :class="{ active: index % 2 === 1 }"
  266. v-for="(val, index) in partAInfos"
  267. :key="index"
  268. >
  269. <div class="table-item" v-for="(item, ind) in val" :key="ind">
  270. <div>{{ item.name }}</div>
  271. <div class="table-value">
  272. {{ Number(item.value).toFixed(2) }}
  273. <div class="unit">{{ item.valueUnit }}</div>
  274. </div>
  275. </div>
  276. </div>
  277. </div>
  278. </div>
  279. </div>
  280. </div>
  281. <alarmDialog ref="alarmDialog" />
  282. </div>
  283. </template>
  284. <script>
  285. import { GetWtPoints, GetPointsData } from "@/api/points/index.js";
  286. import {
  287. GetWtMonitorInfo,
  288. GetWtTelemeteryInfo,
  289. } from "@/api/factoryMonitor/index.js";
  290. import svgIcon from "@/components/coms/icon/svg-icon.vue";
  291. import alarmDialog from "@/components/alarm";
  292. export default {
  293. name: "windDetail",
  294. data() {
  295. return {
  296. current: "fdj",
  297. windname: "",
  298. wtid: "",
  299. wpid: "",
  300. windInfo: {},
  301. monitorInfo: {},
  302. partAInfo: [],
  303. partDInfo: [],
  304. partAInfos: [],
  305. partDInfos: [],
  306. uniformcodesA: [],
  307. uniformcodesD: [],
  308. resA: [],
  309. resD: [],
  310. indexe: 0,
  311. videoTit: [],
  312. dialogVisible: false,
  313. reliable: {},
  314. colorList: ["blue", "green", "red", "orange", "pink", "write", "gray"],
  315. path: ["camera.png", "camera2.png"],
  316. count: 0,
  317. colorFlag: false,
  318. timer: "",
  319. times: "",
  320. };
  321. },
  322. components: { svgIcon, alarmDialog },
  323. apiUrl: "",
  324. props: {
  325. wind: {
  326. type: Object,
  327. default: () => {},
  328. },
  329. flag: {
  330. type: Boolean,
  331. default: false,
  332. },
  333. },
  334. computed: {
  335. windSpeedRota() {
  336. let count = this.windStatus?.SSPJFS / 25;
  337. let result = Number((310 * count + 50).toFixed(0));
  338. if (result) {
  339. if (result > 310) {
  340. return "rotateZ(310deg)";
  341. } else {
  342. return "rotateZ(" + Number((310 * count + 50).toFixed(0)) + "deg)";
  343. }
  344. } else {
  345. return "rotateZ(50deg)";
  346. }
  347. },
  348. },
  349. mounted() {
  350. this.timer = setInterval(() => {
  351. if (Object.keys(this.windInfo).length) {
  352. this.getWtMonitorInfo(this.windInfo);
  353. this.getPointsData(this.resA, this.resD);
  354. }
  355. }, 5000);
  356. this.times = setInterval(() => {
  357. this.count++;
  358. if (this.count > 1) {
  359. this.count = 0;
  360. }
  361. }, 800);
  362. if (document.getElementById("ifrId")) {
  363. const oIframe = document.getElementById("ifrId");
  364. const deviceWidth = document.getElementById("ifVideo").offsetWidth;
  365. const deviceHeight = document.getElementById("ifVideo").offsetHeight;
  366. oIframe.style.width = deviceWidth + "px";
  367. oIframe.style.height = deviceHeight + "px";
  368. }
  369. },
  370. unmounted() {
  371. clearInterval(this.timer);
  372. this.timer = null;
  373. clearInterval(this.times);
  374. this.times = null;
  375. },
  376. watch: {
  377. wind: {
  378. handler() {
  379. if (Object.keys(this.wind).length) {
  380. this.start(this.wind);
  381. }
  382. },
  383. },
  384. $route: {
  385. handler(val) {
  386. if (
  387. val.path.includes("lightmatrix") ||
  388. val.path.includes("detailmatrix") ||
  389. val.path.includes("draughtFan")
  390. ) {
  391. this.colorFlag = true;
  392. }
  393. },
  394. immediate: true,
  395. },
  396. },
  397. methods: {
  398. cancle() {
  399. this.windInfo = {};
  400. this.windname = "";
  401. this.wtid = "";
  402. this.current = "fdj";
  403. this.monitorInfo = {};
  404. this.partAInfo = [];
  405. this.partDInfo = [];
  406. this.partAInfos = [];
  407. this.partDInfos = [];
  408. this.uniformcodesA = [];
  409. this.uniformcodesD = [];
  410. this.resA = [];
  411. this.resD = [];
  412. },
  413. // 页面初始信息
  414. start(val) {
  415. if (Object.keys(val).length) {
  416. this.windInfo = val;
  417. this.windname = val.wtname;
  418. this.wtid = val.wtid;
  419. this.wpid = val.wpid;
  420. this.current = "fdj";
  421. this.getWtMonitorInfo(val);
  422. this.handleClick("fdj");
  423. } else {
  424. this.cancle();
  425. }
  426. },
  427. // 设备监测信息
  428. getWtMonitorInfo(val) {
  429. if (val.wtType == -1) {
  430. GetWtMonitorInfo({ wtid: val.wtid }).then(({ data }) => {
  431. this.monitorInfo = data.data;
  432. this.monitorInfo.rfdl =
  433. this.monitorInfo.rfdl < 0 ? 0 : this.monitorInfo.rfdl;
  434. // for(var key in this.monitorInfo){
  435. // this.monitorInfo[key]=this.monitorInfo[key] < 0 ? 0 : this.monitorInfo[key];
  436. // }
  437. });
  438. } else {
  439. this.monitorInfo = {};
  440. }
  441. },
  442. // 查看各部位编码
  443. handleClick(val) {
  444. this.current = val;
  445. if (this.wtid) {
  446. this.getPartInfo();
  447. }
  448. },
  449. // 统一编码
  450. getPartInfo() {
  451. if (this.windInfo.wtType == -1) {
  452. if (this.wtid.length && this.current) {
  453. GetWtTelemeteryInfo({
  454. part: this.current,
  455. wtid: this.wtid,
  456. }).then(({ data }) => {
  457. // 拿到初始获取数据
  458. this.partAInfo = data.data.AI;
  459. this.partDInfo = data.data.DI;
  460. // 拿到数据的uniformcode集合
  461. this.uniformcodesD = this.partDInfo.length
  462. ? this.partDInfo.map((item) => item.uniformCode)
  463. : [];
  464. this.uniformcodesA = this.partAInfo.length
  465. ? this.partAInfo.map((item) => item.uniformCode)
  466. : [];
  467. // 获取测点数据
  468. this.getPointsIds();
  469. });
  470. }
  471. }
  472. },
  473. getPointsIds() {
  474. let pointsIdsA = new Promise((resolve, reject) => {
  475. GetWtPoints({
  476. wtid: this.wtid,
  477. uniformcodes: this.uniformcodesA,
  478. })
  479. .then(({ data }) => {
  480. resolve(data);
  481. })
  482. .catch((e) => {
  483. reject("发生错误");
  484. });
  485. });
  486. let pointsIdsD = new Promise((resolve, reject) => {
  487. GetWtPoints({
  488. wtid: this.wtid,
  489. uniformcodes: this.uniformcodesD,
  490. })
  491. .then(({ data }) => {
  492. resolve(data);
  493. })
  494. .catch((e) => {
  495. // 标记失败后给定某个数据
  496. reject("发生错误");
  497. });
  498. });
  499. Promise.all([pointsIdsA, pointsIdsD])
  500. .then((results) => {
  501. this.resA = results[0].data.length
  502. ? results[0].data.map((item) => (item != null ? item.nemCode : ""))
  503. : [];
  504. this.resD = results[1].data.length
  505. ? results[1].data.map((item) => (item != null ? item.nemCode : ""))
  506. : [];
  507. this.getPointsData(this.resA, this.resD);
  508. })
  509. .catch((e) => {
  510. console.log("error", e);
  511. });
  512. },
  513. getPointsData(pointsA, pointsD) {
  514. let pointsDataA = new Promise((resolve, reject) => {
  515. GetPointsData({
  516. pointIds: pointsA,
  517. })
  518. .then(({ data }) => {
  519. resolve(data);
  520. })
  521. .catch((e) => {
  522. // 标记失败后给定某个数据
  523. reject("发生错误");
  524. });
  525. });
  526. let pointsDataD = new Promise((resolve, reject) => {
  527. GetPointsData({
  528. pointIds: pointsD,
  529. })
  530. .then(({ data }) => {
  531. resolve(data);
  532. })
  533. .catch((e) => {
  534. // 标记失败后给定某个数据
  535. reject("发生错误");
  536. });
  537. });
  538. Promise.all([pointsDataA, pointsDataD])
  539. .then((results) => {
  540. let pointsInfoA = results[0].data.length ? results[0].data : [];
  541. let pointsInfoD = results[1].data.length ? results[1].data : [];
  542. let partAInfo = [];
  543. let partDInfo = [];
  544. let chunk = 4;
  545. this.partAInfo.forEach((item, index) => {
  546. pointsInfoA.forEach((i, ind) => {
  547. if (index == ind) {
  548. item.value = i.pointValueInDouble;
  549. }
  550. });
  551. });
  552. for (let i = 0, j = this.partAInfo.length; i < j; i += chunk) {
  553. partAInfo.push(this.partAInfo.slice(i, i + chunk));
  554. }
  555. this.partDInfo.forEach((item, index) => {
  556. pointsInfoD.forEach((i, ind) => {
  557. if (index == ind) {
  558. item.value = i.pointValueInDouble;
  559. }
  560. });
  561. });
  562. for (let m = 0, n = this.partDInfo.length; m < n; m += chunk) {
  563. partDInfo.push(this.partDInfo.slice(m, m + chunk));
  564. }
  565. this.partDInfos = partDInfo;
  566. this.partAInfos = partAInfo;
  567. })
  568. .catch((e) => {
  569. // 失败的时候则返回最先被reject失败状态的值
  570. console.log("error", e);
  571. });
  572. },
  573. //打开报警页面
  574. handleAlarm(id) {
  575. this.$refs.alarmDialog &&
  576. this.$refs.alarmDialog.openDialog(id, this.wpid, this.windInfo.wtType);
  577. },
  578. clickVideo(index) {
  579. this.indexe = index;
  580. },
  581. clivkFun() {
  582. this.dialogVisible = true;
  583. },
  584. },
  585. };
  586. </script>
  587. <style lang="less" scoped>
  588. .icLi {
  589. background: rgba(0, 70, 199, 0.1);
  590. border-radius: 20px;
  591. color: #b3b3b3;
  592. }
  593. .actives {
  594. background: rgba(0, 70, 199, 0.4);
  595. border-radius: 20px;
  596. color: #f5f7fa;
  597. }
  598. .bodys {
  599. display: flex;
  600. flex-direction: row;
  601. width: 100%;
  602. height: 100%;
  603. .edge {
  604. width: 18%;
  605. display: flex;
  606. height: 100%;
  607. flex-direction: column;
  608. //
  609. .info {
  610. width: 100%;
  611. flex: 0 0 auto;
  612. // background-color: rgba(11, 12, 12, 0.45);
  613. background-color: rgba(96, 103, 105, 0.2);
  614. border-radius: 5px;
  615. display: flex;
  616. flex-direction: column;
  617. align-items: center;
  618. .info-title {
  619. width: 50%;
  620. height: 25px;
  621. font-size: 16px;
  622. font-family: Microsoft YaHei;
  623. font-weight: 400;
  624. display: flex;
  625. flex-direction: row;
  626. align-items: center;
  627. justify-content: center;
  628. margin-left: 20px;
  629. margin-right: 20px;
  630. white-space: nowrap;
  631. &.green {
  632. background-color: rgba(5, 187, 76, 0.2);
  633. border: 1px solid #05bb4c;
  634. color: #05bb4c;
  635. }
  636. &.blue {
  637. background-color: rgba(0, 70, 199, 0.2);
  638. border: 1px solid #3c88f7;
  639. color: #1c99ff;
  640. }
  641. &.pink {
  642. background-color: rgba(197, 48, 200, 0.2);
  643. border: 1px solid #c530c8;
  644. color: #c530c8;
  645. }
  646. &.red {
  647. background-color: rgba(186, 50, 55, 0.2);
  648. border: 1px solid #ba3237;
  649. color: #ba3237;
  650. }
  651. &.orange {
  652. background-color: rgba(225, 125, 36, 0.2);
  653. border: 1px solid #e17d24;
  654. color: #e17d24;
  655. }
  656. &.write {
  657. background-color: rgba(255, 255, 255, 0.2);
  658. border: 1px solid #ffffff;
  659. color: #ffffff;
  660. }
  661. &.gray {
  662. background-color: rgba(96, 103, 105, 0.2);
  663. border: 1px solid #606769;
  664. color: #606769;
  665. }
  666. }
  667. .wt-alarm {
  668. font-family: Microsoft YaHei;
  669. font-weight: 400;
  670. span {
  671. margin-left: 5px;
  672. &.green {
  673. color: #05bb4c;
  674. }
  675. &.blue {
  676. color: #1c99ff;
  677. }
  678. &.pink {
  679. color: #c530c8;
  680. }
  681. &.red {
  682. color: #ba3237;
  683. }
  684. &.orange {
  685. color: #e17d24;
  686. }
  687. &.write {
  688. color: #ffffff;
  689. }
  690. &.gray {
  691. color: #606769;
  692. }
  693. }
  694. }
  695. .info-item {
  696. width: 90%;
  697. font-size: 24px;
  698. font-family: Adobe Heiti Std;
  699. font-weight: normal;
  700. color: #ffffff;
  701. padding: 20px 0;
  702. }
  703. .info-value {
  704. width: 90%;
  705. display: flex;
  706. flex-direction: row;
  707. align-items: baseline;
  708. justify-content: space-between;
  709. font-size: 50px;
  710. font-family: Arial;
  711. font-weight: 400;
  712. color: #05bb4c;
  713. margin-left: 5px;
  714. white-space: nowrap;
  715. .unit {
  716. font-size: 24px;
  717. font-family: Adobe Heiti Std;
  718. font-weight: normal;
  719. margin-right: 20px;
  720. }
  721. }
  722. }
  723. .monitoring {
  724. width: 100%;
  725. flex: 1 0 auto;
  726. background-color: rgba(96, 103, 105, 0.2);
  727. // background-color: rgba(11, 12, 12, 0.45);
  728. border-radius: 5px;
  729. margin-top: 10px;
  730. display: flex;
  731. flex-direction: column;
  732. align-items: center;
  733. }
  734. .wind-info-list {
  735. height: calc(100% - 42px);
  736. width: 100%;
  737. display: flex;
  738. flex-direction: column;
  739. }
  740. .wind-info {
  741. flex: 1 0 auto;
  742. display: flex;
  743. flex-direction: row;
  744. align-items: center;
  745. justify-content: space-between;
  746. width: 100%;
  747. padding: 0 10%;
  748. font-size: 14px;
  749. font-family: Source Han Sans SC;
  750. font-weight: 400;
  751. color: #959595;
  752. .wind-value {
  753. display: flex;
  754. flex-direction: row;
  755. align-items: baseline;
  756. font-size: 16px;
  757. font-family: Arial;
  758. font-weight: 400;
  759. color: #05bb4c;
  760. .unit {
  761. font-size: 12px;
  762. font-family: Source Han Sans SC;
  763. font-weight: 400;
  764. color: #959595;
  765. width: 40px;
  766. margin-left: 15px;
  767. }
  768. }
  769. }
  770. }
  771. .parts {
  772. width: 79%;
  773. margin-left: 2%;
  774. height: 100%;
  775. display: flex;
  776. flex-direction: column;
  777. align-items: center;
  778. justify-content: space-between;
  779. // position: relative;
  780. .part-top {
  781. flex: 1;
  782. width: 100%;
  783. text-align: center;
  784. }
  785. .part-title {
  786. width: 100%;
  787. height: 30px;
  788. display: flex;
  789. align-items: center;
  790. flex-direction: row;
  791. justify-content: center;
  792. .title-item {
  793. width: 140px;
  794. height: 100%;
  795. display: flex;
  796. align-items: center;
  797. color: #b3bdc0;
  798. justify-content: center;
  799. // background: rgba(67, 81, 107, 0.2);
  800. background: rgba(96, 103, 105, 0.2);
  801. border-left: 1px solid #3b6c53;
  802. border-top: 1px solid #3b6c53;
  803. border-bottom: 1px solid #3b6c53;
  804. &.part-left {
  805. border-radius: 15px 0px 0px 15px;
  806. }
  807. &.part-right {
  808. border-right: 1px solid #3b6c53;
  809. border-radius: 0px 15px 15px 0px;
  810. }
  811. &.active {
  812. // background-color: rgba(0, 70, 199, 0.4);
  813. background-color: rgba(0, 199, 19, 0.4);
  814. color: #ffffff;
  815. }
  816. }
  817. }
  818. .part-imgs {
  819. min-height: calc(100% - 30px);
  820. position: relative;
  821. }
  822. .wind-part {
  823. position: absolute;
  824. top: 50%;
  825. left: 50%;
  826. transform: translate(-50%, -50%);
  827. }
  828. .part-info {
  829. width: 100%;
  830. max-height: 440px;
  831. bottom: 0px;
  832. display: flex;
  833. flex-direction: column-reverse;
  834. [v-cloak] {
  835. display: none;
  836. }
  837. .part-body {
  838. width: 100%;
  839. padding-bottom: 20px;
  840. // background: rgba(11, 12, 12, 0.45);
  841. background: rgba(96, 103, 105, 0.2);
  842. border-radius: 5px;
  843. margin-top: 10px;
  844. display: flex;
  845. flex-direction: column;
  846. align-items: center;
  847. padding: 10px 0;
  848. .part-item {
  849. width: 100%;
  850. height: calc(100% - 42px);
  851. overflow-y: scroll;
  852. }
  853. .part {
  854. width: 100%;
  855. display: flex;
  856. flex-direction: row;
  857. margin-top: 5px;
  858. font-size: 13px;
  859. font-family: Source Han Sans SC;
  860. font-weight: 400;
  861. color: #959595;
  862. padding: 0 10px;
  863. .table-item {
  864. width: 25%;
  865. font-size: 12px;
  866. .table-value {
  867. display: flex;
  868. flex-direction: row;
  869. align-items: baseline;
  870. .unit {
  871. font-size: 12px;
  872. font-family: Source Han Sans SC;
  873. font-weight: 400;
  874. color: #606769;
  875. margin-left: 5px;
  876. width: 40px;
  877. }
  878. &.round {
  879. width: 8px;
  880. height: 8px;
  881. border-radius: 50%;
  882. background-color: #05bb4c;
  883. margin-right: 90px;
  884. }
  885. &.round-red {
  886. width: 8px;
  887. height: 8px;
  888. border-radius: 50%;
  889. background-color: red;
  890. margin-right: 90px;
  891. }
  892. }
  893. }
  894. &.active {
  895. background-color: rgba(83, 89, 104, 0.15);
  896. }
  897. }
  898. }
  899. }
  900. }
  901. }
  902. .monitoring-item {
  903. position: relative;
  904. width: 98%;
  905. height: 42px;
  906. border-bottom: 1px solid #363b46;
  907. display: flex;
  908. align-items: center;
  909. padding-left: 20px;
  910. font-size: 16px;
  911. font-family: Microsoft YaHei;
  912. font-weight: 400;
  913. color: #ffffff;
  914. }
  915. .point {
  916. width: 8px;
  917. height: 1px;
  918. background-color: #ffffff;
  919. position: absolute;
  920. &.point-left {
  921. left: 0;
  922. }
  923. &.point-right {
  924. right: 0;
  925. }
  926. &.top {
  927. top: -1px;
  928. }
  929. &.bottom {
  930. bottom: -1px;
  931. }
  932. }
  933. .points {
  934. width: 1px;
  935. height: 8px;
  936. background-color: #ffffff;
  937. position: absolute;
  938. &.point-left {
  939. left: 0;
  940. }
  941. &.point-right {
  942. right: 0;
  943. }
  944. &.top {
  945. top: -1px;
  946. }
  947. &.bottom {
  948. bottom: -1px;
  949. }
  950. }
  951. .table-item {
  952. display: flex;
  953. flex-direction: row;
  954. align-items: center;
  955. justify-content: space-between;
  956. width: 100%;
  957. height: 33px;
  958. font-size: 12px;
  959. font-family: Microsoft YaHei;
  960. font-weight: 400;
  961. color: #b3b3b3;
  962. padding: 0 0px;
  963. .table-value {
  964. font-family: Arial;
  965. font-weight: 400;
  966. color: #05bb4c;
  967. margin-right: 25px;
  968. }
  969. }
  970. </style>