index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. <template>
  2. <div class="health-3">
  3. <div class="power-info mg-b-8">
  4. <div class="info-tab">
  5. <div
  6. class="tab"
  7. :class="type === '2' ? 'active' : ''"
  8. @click="changeDate('2')"
  9. >
  10. <i class="svg-icon svg-icon svg-icon-sm">
  11. <svg-icon :svgid="'svg-h-day'" />
  12. </i>
  13. <span> 7日健康趋势 </span>
  14. </div>
  15. <div
  16. class="tab"
  17. :class="type === '3' ? 'active' : ''"
  18. @click="changeDate('3')"
  19. >
  20. <i class="svg-icon svg-icon svg-icon-sm">
  21. <svg-icon :svgid="'svg-h-month'" />
  22. </i>
  23. <span>30日健康趋势</span>
  24. </div>
  25. <div class="empty"></div>
  26. <!-- <div class="tab">
  27. <span>全部风场健康趋势</span>
  28. </div> -->
  29. </div>
  30. <div class="info-chart">
  31. <!-- <panel class="info-chart-panel" :title="'损失电量分析'"> -->
  32. <panel class="info-chart-panel" :title="`${wpName || ''}健康趋势`">
  33. <vertival-bar-line-chart
  34. :bardata="bardata"
  35. :lineData="lineData"
  36. :height="'250px'"
  37. />
  38. </panel>
  39. </div>
  40. </div>
  41. <div class="fj-info">
  42. <div class="left-info">
  43. <panel title="预测电量" class="mg-b-16">
  44. <list-bar-chart
  45. :list="listBarData1"
  46. :colors="listBarData1Color"
  47. :height="'9.5vh'"
  48. />
  49. <div class="dashboard">
  50. <dashboard-2
  51. :height="'7.5vh'"
  52. :width="'115px'"
  53. :value="sourceMap.rfdl"
  54. />
  55. <div class="lengends">
  56. <div class="item">
  57. <span class="label">本日发电量</span>
  58. <span class="lengend gary"></span>
  59. <span class="value">{{ sourceMap.rfdl }}</span>
  60. </div>
  61. <div class="item">
  62. <span class="label">本日预测电量</span>
  63. <span class="lengend green"></span>
  64. <span class="value">{{ sourceMap.ycdl1day }}</span>
  65. </div>
  66. </div>
  67. </div>
  68. <div class="dashboard">
  69. <dashboard-2
  70. :height="'7.5vh'"
  71. :width="'115px'"
  72. :value="sourceMap.yczqlmonth"
  73. />
  74. <div class="lengends">
  75. <div class="item">
  76. <span class="label">本月发电量</span>
  77. <span class="lengend gary"></span>
  78. <span class="value">{{ sourceMap.yfdl }}</span>
  79. </div>
  80. <div class="item">
  81. <span class="label">本月预测电量</span>
  82. <span class="lengend green"></span>
  83. <span class="value">{{ sourceMap.ycdl1month }}</span>
  84. </div>
  85. </div>
  86. </div>
  87. </panel>
  88. <panel title="设备健康度" class="mg-b-16">
  89. <thermometer-v-chart :height="'5.5vh'" :value="sourceMap.jkd" />
  90. </panel>
  91. <panel title="隐患等级" class="mg-b-16">
  92. <normal-pie-chart :list="dangerData" :height="'14vh'" />
  93. </panel>
  94. </div>
  95. <div class="right-info">
  96. <toolbar-panel
  97. title="风机健康矩阵列表"
  98. :showLine="false"
  99. class="matrix-panel mg-b-8"
  100. >
  101. <template v-slot:tools>
  102. <div class="tools">
  103. <span class="level">
  104. <span class="text green">优</span>:
  105. <span class="value white">{{ sourceMap.ysl }}</span>
  106. <span class="unit gray">台</span>
  107. </span>
  108. <span class="level">
  109. <span class="text purple">良</span>:
  110. <span class="value white">{{ sourceMap.lsl }}</span>
  111. <span class="unit gray">台</span>
  112. </span>
  113. <span class="level">
  114. <span class="text orange">差</span>:
  115. <span class="value white">{{ sourceMap.csl }}</span>
  116. <span class="unit gray">台</span>
  117. </span>
  118. </div>
  119. </template>
  120. <div class="matrix">
  121. <div
  122. class="item"
  123. :class="
  124. item[1] === '1'
  125. ? 'green'
  126. : item[1] === '2'
  127. ? 'purple'
  128. : 'orange'
  129. "
  130. v-for="(item, index) in sourceMap.wtIdls"
  131. :key="index"
  132. @click="jumpUrl(item)"
  133. >
  134. {{ item[3] }}
  135. </div>
  136. <div class="blank" v-for="index of 20" :key="index"></div>
  137. </div>
  138. </toolbar-panel>
  139. <div class="table">
  140. <Table :data="tableData" />
  141. </div>
  142. </div>
  143. </div>
  144. </div>
  145. </template>
  146. <script>
  147. import ListBarChart from "../../../../components/chart/bar/list-bar-chart.vue";
  148. import VertivalBarLineChart from "../../../../components/chart/combination/vertival-bar-line-chart.vue";
  149. import Dashboard2 from "../../../../components/chart/other/Dashboard2.vue";
  150. import ThermometerVChart from "../../../../components/chart/other/thermometer-v-chart.vue";
  151. import NormalPieChart from "../../../../components/chart/pie/normal-pie-chart.vue";
  152. import SvgIcon from "../../../../components/coms/icon/svg-icon.vue";
  153. import Panel from "../../../../components/coms/panel/panel.vue";
  154. import ToolbarPanel from "../../../../components/coms/panel/toolbar-panel.vue";
  155. import Table from "../../../../components/coms/table/table.vue";
  156. import axios from "axios";
  157. export default {
  158. name: "health3",
  159. setup() {},
  160. components: {
  161. SvgIcon,
  162. Panel,
  163. VertivalBarLineChart,
  164. Table,
  165. ListBarChart,
  166. ThermometerVChart,
  167. NormalPieChart,
  168. ToolbarPanel,
  169. Dashboard2,
  170. },
  171. data() {
  172. return {
  173. wpId: "",
  174. wpName: "",
  175. sourceMap: {
  176. wtIdls: [],
  177. },
  178. type: "2",
  179. bardata: {
  180. area: [],
  181. legend: [],
  182. data: [[]],
  183. },
  184. lineData: [],
  185. listBarData1: [],
  186. dangerData: [],
  187. listBarData1Color: ["purple", "purple"],
  188. tableData: {
  189. column: [
  190. {
  191. name: "",
  192. field: "",
  193. is_num: false,
  194. is_light: false,
  195. },
  196. {
  197. name: "风机编号",
  198. field: "windTurbineId",
  199. is_num: false,
  200. is_light: false,
  201. },
  202. {
  203. name: "故障时间",
  204. field: "stopTime",
  205. is_num: false,
  206. is_light: false,
  207. },
  208. {
  209. name: "故障类型",
  210. field: "stopTypeId",
  211. is_num: false,
  212. is_light: false,
  213. },
  214. {
  215. name: "报警描述",
  216. field: "warningId",
  217. is_num: false,
  218. is_light: false,
  219. },
  220. ],
  221. data: [],
  222. },
  223. };
  224. },
  225. created() {
  226. this.wpId = this.$route.params.wpId;
  227. this.wpName = this.$route.params.wpName || "";
  228. this.$nextTick(() => {
  229. this.requestData();
  230. this.getWpMap();
  231. });
  232. },
  233. methods: {
  234. requestData() {
  235. let that = this;
  236. that.API.requestData({
  237. method: "GET",
  238. timeout: 8000,
  239. baseURL: process.env.VUE_APP_NEW_WISDOM,
  240. subUrl: "/recommen/findAllChartjz",
  241. data: {
  242. wpId: that.wpId,
  243. type: that.type,
  244. },
  245. success(res) {
  246. if (res.code == 200) {
  247. that.bardata.legend = ["优数量", "良数量", "差数量"];
  248. that.lineData = res.data.lvchart;
  249. that.bardata.area = res.data.datechart;
  250. that.bardata.data[2] = res.data.cslchart;
  251. that.bardata.data[1] = res.data.lslchart;
  252. that.bardata.data[0] = res.data.yslchart;
  253. }
  254. },
  255. });
  256. },
  257. getWpMap() {
  258. let that = this;
  259. that.API.requestData({
  260. method: "GET",
  261. baseURL: process.env.VUE_APP_NEW_WISDOM,
  262. subUrl: "/health/findWpMap",
  263. data: {
  264. wpId: that.wpId,
  265. },
  266. success(res) {
  267. that.listBarData1 = [
  268. { name: "未来 {c1|15分钟} 预测电量", value: res.data.ycdl15minute },
  269. { name: "未来 {c1|4小时} 预测电量", value: res.data.ycdl1hour },
  270. ];
  271. let dangerData = [
  272. {
  273. name: "一级隐患",
  274. value: 0,
  275. },
  276. {
  277. name: "二级隐患",
  278. value: 0,
  279. },
  280. {
  281. name: "三级隐患",
  282. value: 0,
  283. },
  284. {
  285. name: "四级隐患",
  286. value: 0,
  287. },
  288. {
  289. name: "五级隐患",
  290. value: 0,
  291. },
  292. ];
  293. dangerData.forEach((ele, index) => {
  294. ele.value = res.data.yhls[index];
  295. });
  296. that.dangerData = dangerData;
  297. that.tableData.data = res.data.gzls;
  298. that.sourceMap = res.data;
  299. },
  300. });
  301. },
  302. changeDate(type) {
  303. this.type = type;
  304. this.requestData();
  305. },
  306. jumpUrl(item) {
  307. // this.$router.push({
  308. // path: `/health/healthDetail/wtHealth/${this.wpId}/${item[0]}`,
  309. // query: { from: "wpHealth" },
  310. // });
  311. },
  312. },
  313. };
  314. </script>
  315. <style lang="less">
  316. .health-3 {
  317. overflow-y: auto;
  318. height: 100%;
  319. .power-info {
  320. display: flex;
  321. .info-tab {
  322. flex: 0 0 156px;
  323. display: flex;
  324. flex-direction: column;
  325. height: 287px;
  326. margin-right: 1.4815vh;
  327. .tab {
  328. position: relative;
  329. flex: 0 0 auto;
  330. text-align: center;
  331. height: 33px;
  332. line-height: 33px;
  333. margin-right: 8px;
  334. color: @gray-l;
  335. font-size: 12px;
  336. background: fade(@gray, 20);
  337. border: 1px solid fade(@gray, 20);
  338. display: flex;
  339. align-items: center;
  340. i {
  341. margin: 0 1.4815vh;
  342. svg use {
  343. fill: @gray-l;
  344. }
  345. }
  346. &:hover,
  347. &.active {
  348. background: fade(@green, 20);
  349. border: 1px solid @green;
  350. color: @green;
  351. cursor: pointer;
  352. i svg use {
  353. fill: @green;
  354. }
  355. }
  356. &.active::after {
  357. box-sizing: content-box;
  358. width: 0px;
  359. height: 0px;
  360. position: absolute;
  361. right: -19px;
  362. padding: 0;
  363. border-bottom: 9px solid @green;
  364. border-top: 9px solid transparent;
  365. border-left: 9px solid transparent;
  366. border-right: 9px solid transparent;
  367. display: block;
  368. content: "";
  369. z-index: 10;
  370. transform: rotate(90deg);
  371. }
  372. &.active::before {
  373. box-sizing: content-box;
  374. width: 0px;
  375. height: 0px;
  376. position: absolute;
  377. right: -17px;
  378. padding: 0;
  379. border-bottom: 9px solid #063319;
  380. border-top: 9px solid transparent;
  381. border-left: 9px solid transparent;
  382. border-right: 9px solid transparent;
  383. display: block;
  384. content: "";
  385. z-index: 12;
  386. transform: rotate(90deg);
  387. }
  388. & + .tab {
  389. margin-top: 0.7407vh;
  390. }
  391. &:last-child {
  392. text-align: center;
  393. justify-content: center;
  394. }
  395. }
  396. .empty {
  397. flex: 1 0 auto;
  398. }
  399. }
  400. .info-chart {
  401. flex: 1 0 auto;
  402. }
  403. }
  404. .fj-info {
  405. display: flex;
  406. .left-info {
  407. flex: 0 0 300px;
  408. padding-right: 16px;
  409. .com-panel .panel-header {
  410. margin-bottom: 0.7407vh;
  411. }
  412. @media screen and (max-height: 1078px) {
  413. .mg-b-16 {
  414. margin-bottom: 0.7407vh;
  415. }
  416. }
  417. @media screen and (min-height: 1078px) and (max-height: 1080px) {
  418. .com-panel .panel-header {
  419. margin-bottom: 1.4815vh;
  420. }
  421. }
  422. .dashboard {
  423. position: relative;
  424. display: flex;
  425. align-items: center;
  426. .lengends {
  427. font-size: 12px;
  428. line-height: 20px;
  429. padding-left: 12px;
  430. .item {
  431. display: flex;
  432. align-items: center;
  433. .label {
  434. margin-right: 8px;
  435. color: @gray;
  436. }
  437. .lengend {
  438. display: inline-block;
  439. width: 6px;
  440. height: 6px;
  441. background: @gray;
  442. border-radius: 50%;
  443. margin-right: 8px;
  444. &.green {
  445. background: @green;
  446. }
  447. }
  448. .value {
  449. color: fade(@white, 75);
  450. }
  451. }
  452. }
  453. }
  454. }
  455. .right-info {
  456. flex: 1;
  457. .matrix-panel {
  458. .panel-title {
  459. flex: 0 0 auto;
  460. }
  461. .tools {
  462. margin-left: 8px;
  463. .level {
  464. padding: 0 16px;
  465. }
  466. }
  467. .matrix {
  468. display: flex;
  469. flex-wrap: wrap;
  470. .item {
  471. flex: 1 0 calc(100% / 20 - 4px);
  472. line-height: 26px;
  473. background: fade(@gray, 20);
  474. color: @gray-l;
  475. font-size: 12px;
  476. margin-bottom: 4px;
  477. text-align: center;
  478. border: 1px solid transparent;
  479. cursor: pointer;
  480. & + .item {
  481. margin-left: 4px;
  482. }
  483. &:nth-child(20n + 1) {
  484. margin-left: 0px;
  485. }
  486. &.green {
  487. color: @green;
  488. background: fade(@green, 20);
  489. border-color: @green;
  490. }
  491. &.purple {
  492. color: @purple;
  493. background: fade(@purple, 20);
  494. border-color: @purple;
  495. }
  496. &.orange {
  497. color: @orange;
  498. background: fade(@orange, 20);
  499. border-color: @orange;
  500. }
  501. &.red {
  502. color: @red;
  503. background: fade(@red, 20);
  504. border-color: @red;
  505. }
  506. }
  507. .blank {
  508. flex: 1 0 calc(100% / 20 - 4px);
  509. margin-left: 4px;
  510. }
  511. }
  512. }
  513. .table {
  514. tbody {
  515. height: calc(100vh - 640px);
  516. }
  517. }
  518. }
  519. }
  520. }
  521. </style>