detailPages.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. <template>
  2. <el-dialog
  3. width="55%"
  4. @opened="opened()"
  5. @closed="closed()"
  6. :show-close="false"
  7. class="my-info-dialog"
  8. >
  9. <template #title>
  10. <div class="showTitle">
  11. <img
  12. class="titleImg"
  13. src="../../assets/img/controlcenter/daraTrue.png"
  14. alt=""
  15. />
  16. <div class="titles">国电电力{{env === 'SX'? '山西': '河北'}}新能源开发有限公司</div>
  17. </div>
  18. </template>
  19. <div class="body">
  20. <div class="dataList">
  21. <div class="data">
  22. <div class="name">健康指数:</div>
  23. <div class="num">{{ showDate?.healthIndex?.value }}</div>
  24. </div>
  25. <div class="data">
  26. <div class="name">资源指数:</div>
  27. <div class="num">{{ showDate?.resourceIndex?.value }}</div>
  28. </div>
  29. <div class="data">
  30. <div class="name">风能利用率:</div>
  31. <div class="num">{{ showDate?.windEnergyRate?.value }}%</div>
  32. </div>
  33. <div class="data">
  34. <div class="name">曲线跟随率:</div>
  35. <div class="num">{{ showDate?.curveFollowingRate?.value }}%</div>
  36. </div>
  37. <div class="data">
  38. <div class="name">实际功率:</div>
  39. <div class="num">{{ showDate?.realTimePower?.value }}</div>
  40. <div class="unit">MW</div>
  41. </div>
  42. <div class="data">
  43. <div class="name">理论功率:</div>
  44. <div class="num">{{ showDate?.theoreticalPower?.value }}</div>
  45. <div class="unit" @click="ChangeColor()">MW</div>
  46. </div>
  47. <div class="data">
  48. <div class="name">AGC有功设定:</div>
  49. <div class="num">{{ showDate?.agcPowerSet?.value }}</div>
  50. <div class="unit" @click="ChangeColors()">MW</div>
  51. </div>
  52. </div>
  53. <div id="totleEcharts" class="echarts"></div>
  54. <!-- <MultipleLineChart height="400px" :units="powerLineChartData.units" :list="powerLineChartData.value" :colors="colors"
  55. :showLegend="true" /> -->
  56. </div>
  57. </el-dialog>
  58. </template>
  59. <script>
  60. import MultipleLineChart from "../focus/multiple-line-chart.vue";
  61. import MessageBridge from "utils/MessageBridge";
  62. import dayjs from "dayjs";
  63. import api from "api/index";
  64. import * as echarts from "echarts";
  65. export default {
  66. components: {
  67. MultipleLineChart,
  68. },
  69. props: {
  70. stationName: {
  71. type: String,
  72. default: "",
  73. },
  74. data: {
  75. type: Array,
  76. },
  77. },
  78. created() {},
  79. mounted() {},
  80. data() {
  81. return {
  82. // 定时器
  83. timer: "",
  84. colors: ["rgba(75, 85, 174, 1)", "rgba(05, 187, 76, 1)"],
  85. showDate: {},
  86. chartData: {
  87. units: [""],
  88. value: [
  89. {
  90. title: "实际功率(MW)",
  91. yAxisIndex: 0,
  92. value: [],
  93. },
  94. {
  95. title: "理论功率(MW)",
  96. yAxisIndex: 0,
  97. value: [],
  98. },
  99. ],
  100. },
  101. timeData: [],
  102. PowerSet: [],
  103. ActualPower: [],
  104. index: 0,
  105. powerLineChartData: {},
  106. intervals: null,
  107. env: process.env.VUE_APP_ENV,
  108. };
  109. },
  110. methods: {
  111. opened() {
  112. this.getMessage();
  113. this.intervals = setInterval(this.getMessage, 10000);
  114. },
  115. getMessage() {
  116. api.stationOverview().then((res) => {
  117. let data = res.data;
  118. data.healthIndex.value = Number(data.healthIndex.value).toFixed(0);
  119. data.resourceIndex.value = Number(data.resourceIndex.value).toFixed(0);
  120. data.realTimePower.value = data.realTimePower.value.toFixed(2);
  121. data.theoreticalPower.value = data.theoreticalPower.value.toFixed(2);
  122. data.agcPowerSet.value = data.agcPowerSet.value.toFixed(2);
  123. data.windEnergyRate.value = data.windEnergyRate.value.toFixed(2);
  124. data.curveFollowingRate.value =
  125. data.curveFollowingRate.value.toFixed(2);
  126. this.showDate = data;
  127. });
  128. },
  129. async getDate() {
  130. await this.getPower({
  131. PowerSet: this.env === 'HB'? "HB_GD_QYG_JS_XX_XX_XXX_CI0125" : "HB_GD_QYG_JS_XX_XX_XXX_CI0125",
  132. name: "ActualPower",
  133. });
  134. await this.getPower({
  135. ActualPower: this.env === 'HB' ? "HB_GD_QYG_JS_XX_XX_XXX_CI0180" : "HB_GD_QYG_JS_XX_XX_XXX_CI0180",
  136. name: "theoryPower",
  137. });
  138. this.timer = setTimeout(() => {
  139. this.getDate();
  140. }, 60000);
  141. },
  142. getPower(values) {
  143. let date = new Date();
  144. let endTs = date.getTime();
  145. let startTs = endTs - 28800000;
  146. let names = values.name;
  147. api
  148. .getPower({
  149. tagName: values.PowerSet ? values.PowerSet : values.ActualPower,
  150. startTs: startTs,
  151. endTs: endTs,
  152. interval: 60,
  153. })
  154. .then((res) => {
  155. if (res) {
  156. if (names === "ActualPower") {
  157. let list = [];
  158. res.data.forEach((item) => {
  159. list.push({
  160. text: dayjs(item.ts).format("HH:mm"),
  161. value: parseFloat(item.doubleValue.toFixed(2)),
  162. });
  163. this.chartData.value[0].value = list;
  164. });
  165. } else {
  166. let list = [];
  167. res.data.forEach((item) => {
  168. list.push({
  169. text: dayjs(item.ts).format("HH:mm"),
  170. value: parseFloat(item.doubleValue.toFixed(2) / 1000),
  171. });
  172. this.chartData.value[1].value = list;
  173. });
  174. }
  175. this.totleErtcher(this.chartData);
  176. }
  177. });
  178. },
  179. totleErtcher(chartData) {
  180. console.log(document.getElementById("totleEcharts"));
  181. let chartDom = document.getElementById("totleEcharts");
  182. let myChart = echarts.init(chartDom, "#ffffff");
  183. let option;
  184. option = {
  185. tooltip: {
  186. trigger: "axis",
  187. },
  188. legend: {
  189. show: true,
  190. data: chartData.value.map((t) => {
  191. return t.title;
  192. }),
  193. right: 56,
  194. icon: "circle",
  195. itemWidth: 6,
  196. inactiveColor: "#606769",
  197. textStyle: {
  198. color: "#B3BDC0",
  199. fontSize: 12,
  200. },
  201. },
  202. xAxis: [
  203. {
  204. type: "category",
  205. boundaryGap: false,
  206. axisLabel: {
  207. interval: 60,
  208. showMinLabel: true,
  209. showMaxLabel: true,
  210. formatter: "{value}",
  211. fontSize: 14,
  212. textStyle: {
  213. color: "#606769",
  214. },
  215. },
  216. axisLine: {
  217. show: false,
  218. },
  219. data: chartData.value[0].value.map((item) => {
  220. return item.text;
  221. }),
  222. },
  223. ],
  224. yAxis: {
  225. type: "value",
  226. axisLabel: {
  227. formatter: "{value}",
  228. fontSize: 14,
  229. },
  230. axisLine: {
  231. show: false,
  232. },
  233. splitLine: {
  234. show: true,
  235. lineStyle: {
  236. color: "#606769",
  237. type: "dashed",
  238. },
  239. },
  240. },
  241. series: [
  242. {
  243. name: chartData.value[0].title,
  244. smooth: true,
  245. showSymbol: false,
  246. data: chartData.value[0].value.map((item) => {
  247. return item.value;
  248. }),
  249. type: "line",
  250. lineStyle: {
  251. normal: {
  252. color: "rgba(75, 85, 174, 1)",
  253. width: 1,
  254. },
  255. },
  256. },
  257. {
  258. name: chartData.value[1].title,
  259. smooth: true,
  260. showSymbol: false,
  261. data: chartData.value[1].value.map((item) => {
  262. return item.value;
  263. }),
  264. type: "line",
  265. lineStyle: {
  266. normal: {
  267. color: "rgba(05, 187, 76, 1)",
  268. width: 1,
  269. },
  270. },
  271. },
  272. ],
  273. };
  274. option && myChart.setOption(option);
  275. },
  276. ChangeColors() {
  277. this.colors = ["#aa2116", "#fcaf17"];
  278. },
  279. ChangeColor() {
  280. this.colors = ["rgba(75, 85, 174, 1)", "rgba(05, 187, 76, 1)"];
  281. },
  282. closed() {
  283. clearInterval(this.timer);
  284. //勿删,传递关闭方法
  285. clearInterval(this.intervals);
  286. this.intervals = null;
  287. this.timer = null;
  288. },
  289. },
  290. unmounted() {
  291. clearInterval(this.intervals);
  292. this.intervals = null;
  293. },
  294. };
  295. </script>
  296. <style scoped>
  297. .echartsBox {
  298. width: 64rem;
  299. height: 220px;
  300. overflow: hidden;
  301. }
  302. .el-dialog__header {
  303. background-color: #000000;
  304. }
  305. .showTitle {
  306. display: flex;
  307. flex-direction: row;
  308. align-items: center;
  309. justify-content: center;
  310. margin-top: -10px;
  311. font-size: 18px;
  312. color: #ffffff;
  313. }
  314. .titleImg {
  315. width: 16px;
  316. height: 16px;
  317. margin-right: 13px;
  318. }
  319. .icon {
  320. font-size: 12px;
  321. margin-left: 10px;
  322. margin-top: 5px;
  323. }
  324. .body {
  325. background-color: black;
  326. width: 100%;
  327. margin-top: -30px;
  328. /* height: 200px; */
  329. }
  330. .dataList {
  331. display: flex;
  332. flex-direction: row;
  333. flex-wrap: wrap;
  334. align-items: center;
  335. padding-top: 27px;
  336. }
  337. .data {
  338. width: 50%;
  339. display: flex;
  340. flex-direction: row;
  341. align-items: center;
  342. margin-bottom: 22px;
  343. }
  344. .name {
  345. width: 40%;
  346. display: flex;
  347. flex-direction: row-reverse;
  348. font-size: 12px;
  349. color: #ffffff;
  350. }
  351. .num {
  352. margin-left: 59px;
  353. font-size: 16px;
  354. color: #05bb4c;
  355. min-width: 40px;
  356. }
  357. .unit {
  358. font-size: 16px;
  359. color: #ffffff;
  360. margin-left: 20px;
  361. }
  362. .condition {
  363. width: 100%;
  364. display: flex;
  365. flex-direction: row;
  366. align-items: center;
  367. margin-bottom: 20px;
  368. border-bottom: 1px solid #3d3d3d;
  369. padding-bottom: 10px;
  370. }
  371. .status {
  372. width: 25%;
  373. display: flex;
  374. flex-direction: row;
  375. align-items: center;
  376. justify-content: center;
  377. }
  378. .statusIcon {
  379. width: 14px;
  380. height: 14px;
  381. margin-left: 8px;
  382. }
  383. .echarts {
  384. width: 100%;
  385. height: 400px;
  386. display: inline-block;
  387. }
  388. </style>