status-panel.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555
  1. <template>
  2. <div :class="$store.state.themeName == 'dark' ? 'dark-simp' : 'light-simp'">
  3. <ul>
  4. <li class="simp_title">
  5. <p>{{ data.wpname }}</p>
  6. <p>
  7. <!-- <img src="img/images/gridBac.png" /> -->
  8. <span>{{ data.jrts }}</span>
  9. </p>
  10. </li>
  11. <li class="simp_first">
  12. <div class="covers" v-if="data.qcjrzt && !data.fjjrzt"></div>
  13. <div>
  14. <p class="first_tit">待机</p>
  15. <p class="dj_val first_val">{{ data.djts || 0 }}</p>
  16. </div>
  17. <div>
  18. <p class="first_tit">并网</p>
  19. <p class="yx_val first_val">{{ data.yxts || 0 }}</p>
  20. </div>
  21. <div>
  22. <p class="first_tit">故障</p>
  23. <p class="gz_val first_val">{{ data.gzts || 0 }}</p>
  24. </div>
  25. <div>
  26. <p class="first_tit">检修</p>
  27. <p class="jx_val first_val">{{ data.jxts || 0 }}</p>
  28. </div>
  29. <div>
  30. <p class="first_tit">限电</p>
  31. <p class="xd_val first_val">{{ data.xdts || 0 }}</p>
  32. </div>
  33. <div>
  34. <p class="first_tit">受累</p>
  35. <p class="sl_val first_val">{{ data.slts || 0 }}</p>
  36. </div>
  37. <div>
  38. <p class="first_tit">离线</p>
  39. <p class="lx_val first_val">{{ data.lxts || 0 }}</p>
  40. </div>
  41. </li>
  42. <li>
  43. <p class="simp_form"></p>
  44. <ul class="simp_seconde">
  45. <li>
  46. <div class="covers" v-if="data.qcjrzt && !data.agcjrzt"></div>
  47. <p>AGC:</p>
  48. <p class="val_tit">设定</p>
  49. <p class="val_name sd_name">{{ data.agc002.toFixed(2) }}</p>
  50. <p class="unit_name">出线</p>
  51. <p class="unit_val sd_name">{{ data.agc001.toFixed(2) }}</p>
  52. </li>
  53. <li>
  54. <div class="covers" v-if="data.qcjrzt && !data.fggljrzt"></div>
  55. <div class="grd_fc">
  56. <p>{{ (data.type == -1 ? "风功" : "光功") + "率:" }}</p>
  57. <p>{{ "风功率:" }}</p>
  58. <p class="val_tit">未来15分钟</p>
  59. <p class="val_name grd_name">{{ data.ycgl.toFixed(2) }}</p>
  60. </div>
  61. <p class="unit_name"></p>
  62. <p class="unit_val"></p>
  63. </li>
  64. <li>
  65. <div class="covers" v-if="data.qcjrzt && !data.qxzjrzt"></div>
  66. <p>
  67. {{ data.type == -1 ? "测风塔:" : "气象站:" }}
  68. </p>
  69. <p class="val_tit">风速</p>
  70. <p class="val_name">
  71. {{ (data.qxzfs.toFixed(2) || 0) + "m/s" }}
  72. </p>
  73. <p class="unit_name">风向</p>
  74. <p class="unit_val">
  75. {{ (data.qxzfx.toFixed(2) || 0) + "°" }}
  76. </p>
  77. </li>
  78. <li>
  79. <div class="covers" v-if="data.qcjrzt && !data.djljrzt"></div>
  80. <p>电能量表:</p>
  81. <p class="val_tit"></p>
  82. <p class="val_name">
  83. {{ data.swdl ? data.swdl.toFixed(2) + "万kWh" : "0万kWh" }}
  84. </p>
  85. <p class="unit_name"></p>
  86. <p class="unit_val"></p>
  87. </li>
  88. </ul>
  89. </li>
  90. </ul>
  91. <div class="cover" v-if="!data.qcjrzt">中断</div>
  92. </div>
  93. </template>
  94. <script>
  95. export default {
  96. // 名称
  97. name: "StatusPanel",
  98. // 使用组件
  99. components: {},
  100. props: {
  101. data: Object,
  102. },
  103. // 数据
  104. data() {
  105. return {};
  106. },
  107. // 函数
  108. methods: {
  109. jumpPage(wpId) {
  110. this.$router.push({
  111. path: `/monitor/windsite/homePage/${wpId}`,
  112. });
  113. },
  114. },
  115. };
  116. </script>
  117. <style lang="less" scoped>
  118. ul,
  119. ul li,
  120. p {
  121. margin: 0;
  122. padding: 0;
  123. list-style: none;
  124. }
  125. li {
  126. display: flex;
  127. margin: 0 auto;
  128. }
  129. .light-simp {
  130. width: 353px;
  131. height: 229px;
  132. background: #fff;
  133. border-radius: 8px;
  134. margin-bottom: 11px;
  135. padding: 0 12px;
  136. li {
  137. display: flex;
  138. margin: 0 auto;
  139. }
  140. .covers {
  141. position: absolute;
  142. width: 335px;
  143. height: 31px;
  144. margin-left: -2px;
  145. background: rgba(255, 255, 255, 0);
  146. backdrop-filter: blur(0.5px);
  147. }
  148. .cover {
  149. width: 354px;
  150. height: 230px;
  151. background: rgba(96, 103, 105, 0.5);
  152. border-radius: 8px;
  153. font-size: 50px;
  154. font-weight: bold;
  155. //backdrop-filter: blur(1.5px);
  156. letter-spacing: 10px;
  157. font-family: Microsoft YaHei;
  158. color: rgba(255, 255, 255, 0.45);
  159. text-align: center;
  160. //box-shadow: 0 0 22px rgba(255, 255, 255, .5) inset;
  161. box-shadow: 0 0 22px rgba(0, 0, 0, 0.2) inset;
  162. position: relative;
  163. left: -12px;
  164. top: -217px;
  165. backdrop-filter: blur(0.5px);
  166. line-height: 230px;
  167. img {
  168. width: 50px;
  169. height: 50px;
  170. position: absolute;
  171. top: 94px;
  172. left: 150px;
  173. }
  174. }
  175. .simp_title {
  176. position: relative;
  177. padding: 10px 6px 5px;
  178. width: 325px;
  179. font-weight: 700;
  180. p {
  181. font-size: 14px;
  182. color: #36348e;
  183. }
  184. img {
  185. position: absolute;
  186. right: -38px;
  187. top: 0;
  188. }
  189. span {
  190. position: absolute;
  191. right: 12px;
  192. font-size: 16px;
  193. font-family: Arial;
  194. color: #05bb4c;
  195. }
  196. }
  197. .simp_first {
  198. // padding: 0 12px;
  199. justify-content: space-between;
  200. width: 329px;
  201. line-height: 25px;
  202. // padding-left: 20px;
  203. border-bottom: 1px solid rgba(72, 75, 83, 0.5);
  204. font-weight: 700;
  205. div {
  206. .first_tit {
  207. font-size: 12px;
  208. color: #606769;
  209. }
  210. .first_val {
  211. font-size: 12px;
  212. font-family: Arial;
  213. }
  214. .yx_val {
  215. color: rgba(5, 187, 76, 1);
  216. }
  217. .dj_val {
  218. color: rgba(28, 153, 255, 1);
  219. }
  220. .xd_val {
  221. color: rgba(197, 48, 200, 1);
  222. }
  223. .jx_val {
  224. color: #e17d24;
  225. }
  226. .gz_val {
  227. color: #ba3237;
  228. }
  229. .sl_val {
  230. color: #0d1e1c;
  231. }
  232. .lx_val {
  233. color: #606769;
  234. }
  235. p {
  236. &:last-of-type {
  237. font-size: 12px;
  238. font-family: Arial;
  239. text-align: center;
  240. }
  241. }
  242. }
  243. }
  244. .simp_form {
  245. width: 4px;
  246. height: 8px;
  247. background: @green;
  248. position: relative;
  249. top: 10px;
  250. left: 13px;
  251. }
  252. .simp_seconde {
  253. margin: 0;
  254. font-size: 12px;
  255. font-family: Adobe Heiti Std;
  256. font-weight: 700;
  257. color: #606769;
  258. line-height: 28px;
  259. .grd_fc {
  260. display: flex;
  261. .grd_name {
  262. margin-left: 20px;
  263. }
  264. }
  265. //border-bottom: 1px solid red;
  266. li {
  267. width: 329px;
  268. display: flex;
  269. line-height: 32px;
  270. justify-content: space-between;
  271. border-bottom: 1px solid rgba(72, 75, 83, 0.5);
  272. .sd_name {
  273. color: #36348e;
  274. font-weight: 700;
  275. }
  276. }
  277. p {
  278. width: 55px;
  279. white-space: nowrap;
  280. text-align: right;
  281. line-height: 31px;
  282. &:first-of-type {
  283. width: 57px;
  284. }
  285. }
  286. .val_tit {
  287. margin-left: 20px;
  288. }
  289. .val_name {
  290. font-family: Arial;
  291. color: #36348e;
  292. text-align: left;
  293. //position: relative;
  294. //top: 1px;
  295. padding-top: 1px;
  296. margin-left: 8px;
  297. line-height: 30px;
  298. }
  299. .unit_name {
  300. //position: relative;
  301. }
  302. .unit_val {
  303. font-family: Arial;
  304. text-align: left;
  305. color: #36348e;
  306. margin-top: 1px;
  307. //position: relative;
  308. //top: 1px;
  309. //left: -5px
  310. }
  311. }
  312. }
  313. .dark-simp {
  314. width: 353px;
  315. height: 229px;
  316. background: rgba(96, 103, 105, 0.2);
  317. border-radius: 8px;
  318. margin-bottom: 11px;
  319. padding: 0 12px;
  320. li {
  321. display: flex;
  322. margin: 0 auto;
  323. }
  324. .covers {
  325. position: absolute;
  326. width: 335px;
  327. height: 31px;
  328. margin-left: -2px;
  329. background: rgba(96, 103, 105, 0.5);
  330. backdrop-filter: blur(0.5px);
  331. }
  332. .cover {
  333. width: 354px;
  334. height: 230px;
  335. background: rgba(96, 103, 105, 0.5);
  336. border-radius: 8px;
  337. font-size: 50px;
  338. font-weight: bold;
  339. //backdrop-filter: blur(1.5px);
  340. letter-spacing: 10px;
  341. font-family: Microsoft YaHei;
  342. color: rgba(255, 255, 255, 0.45);
  343. text-align: center;
  344. //box-shadow: 0 0 22px rgba(255, 255, 255, .5) inset;
  345. box-shadow: 0 0 22px rgba(0, 0, 0, 0.2) inset;
  346. position: relative;
  347. left: -12px;
  348. top: -217px;
  349. backdrop-filter: blur(0.5px);
  350. line-height: 230px;
  351. img {
  352. width: 50px;
  353. height: 50px;
  354. position: absolute;
  355. top: 94px;
  356. left: 150px;
  357. }
  358. }
  359. .simp_form {
  360. width: 4px;
  361. height: 8px;
  362. background: @green;
  363. position: relative;
  364. top: 10px;
  365. left: 13px;
  366. }
  367. .simp_first {
  368. justify-content: space-between;
  369. width: 329px;
  370. line-height: 25px;
  371. border-bottom: 1px solid rgba(72, 75, 83, 0.5);
  372. .covers {
  373. position: absolute;
  374. width: 335px;
  375. height: 48px;
  376. margin-left: -2px;
  377. background: rgba(96, 103, 105, 0.5);
  378. backdrop-filter: blur(3px);
  379. }
  380. .first_tit {
  381. font-size: 12px;
  382. color: #8b8c8e;
  383. }
  384. .first_val {
  385. font-size: 12px;
  386. font-family: Arial;
  387. }
  388. div {
  389. .yx_val {
  390. color: rgba(5, 187, 76, 1);
  391. }
  392. .dj_val {
  393. color: rgba(28, 153, 255, 1);
  394. }
  395. .xd_val {
  396. color: rgba(197, 48, 200, 1);
  397. }
  398. .jx_val {
  399. color: #e17d24;
  400. }
  401. .gz_val {
  402. color: #ba3237;
  403. }
  404. .sl_val {
  405. color: rgba(255, 255, 255, 1);
  406. }
  407. .lx_val {
  408. color: #606769;
  409. }
  410. p {
  411. &:last-of-type {
  412. font-size: 12px;
  413. font-family: Arial;
  414. text-align: center;
  415. }
  416. }
  417. }
  418. }
  419. .simp_seconde {
  420. margin: 0 auto;
  421. font-size: 12px;
  422. font-family: Adobe Heiti Std;
  423. font-weight: normal;
  424. color: #fff;
  425. line-height: 28px;
  426. .grd_fc {
  427. display: flex;
  428. .grd_name {
  429. margin-left: 20px;
  430. }
  431. }
  432. //border-bottom: 1px solid red;
  433. li {
  434. width: 329px;
  435. display: flex;
  436. line-height: 32px;
  437. justify-content: space-between;
  438. border-bottom: 1px solid rgba(72, 75, 83, 0.5);
  439. .sd_name {
  440. color: #ffffff;
  441. }
  442. }
  443. p {
  444. width: 55px;
  445. white-space: nowrap;
  446. text-align: right;
  447. line-height: 31px;
  448. &:first-of-type {
  449. width: 57px;
  450. }
  451. }
  452. .val_tit {
  453. margin-left: 20px;
  454. }
  455. .val_name {
  456. font-family: Arial;
  457. color: @green;
  458. text-align: left;
  459. //position: relative;
  460. //top: 1px;
  461. padding-top: 1px;
  462. margin-left: 8px;
  463. line-height: 30px;
  464. }
  465. .unit_name {
  466. //position: relative;
  467. }
  468. .unit_val {
  469. font-family: Arial;
  470. text-align: left;
  471. color: @green;
  472. margin-top: 1px;
  473. //position: relative;
  474. //top: 1px;
  475. //left: -5px
  476. }
  477. }
  478. .simp_title {
  479. position: relative;
  480. padding: 10px 6px 5px;
  481. width: 325px;
  482. p {
  483. font-size: 14px;
  484. color: hsla(0, 0%, 100%, 0.75);
  485. }
  486. img {
  487. position: absolute;
  488. right: -38px;
  489. top: 0;
  490. }
  491. span {
  492. position: absolute;
  493. right: 12px;
  494. font-size: 16px;
  495. font-family: Arial;
  496. color: #05bb4c;
  497. }
  498. }
  499. }
  500. </style>