powerEcharts.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. <template>
  2. <!-- 72小时功率曲线-->
  3. <div class="powerTitle" v-if="showTitle">24小时功率曲线</div>
  4. <div id="main" :style="{ width: width, height: height }"></div>
  5. </template>
  6. <script>
  7. import * as echarts from "echarts";
  8. import dayjs from "dayjs";
  9. export default {
  10. name: "powerEcharts",
  11. props: {
  12. showTitle: {
  13. type: Boolean,
  14. default: true,
  15. },
  16. predictFlag: {
  17. type: Boolean,
  18. default: false,
  19. },
  20. width: {
  21. type: String,
  22. default: "870px",
  23. },
  24. height: {
  25. type: String,
  26. default: "165px",
  27. },
  28. CurveValues: {
  29. type: Array,
  30. required: true,
  31. },
  32. // 单位
  33. unit: {
  34. type: String,
  35. default: "",
  36. },
  37. //倍率
  38. ratio: {
  39. type: Number,
  40. default: 1,
  41. },
  42. },
  43. mounted() {
  44. this.$nextTick(() => {
  45. this.getChart();
  46. });
  47. },
  48. data() {
  49. return {
  50. emptyData: [],
  51. current: 0,
  52. };
  53. },
  54. methods: {
  55. getChart() {
  56. var chartDom = document.getElementById("main");
  57. var myChart = echarts.init(chartDom); // 绘制图表
  58. var options = {
  59. title: {},
  60. axisLine: {
  61. lineStyle: {
  62. color: "#272729", //x轴的颜色
  63. width: 2, //轴线的宽度
  64. },
  65. },
  66. tooltip: {
  67. // formatter: '{a} <br/>{b} : {c}',
  68. trigger: "axis",
  69. backgroundColor: "rgba(0, 0, 0, 0.3)",
  70. textStyle: {
  71. color: "white", //设置文字颜色
  72. },
  73. },
  74. legend: {
  75. top: "6%",
  76. right: "2%",
  77. textStyle: {
  78. fontSize: "12",
  79. color: "#A4A4A5",
  80. },
  81. orient: "vertical",
  82. icon: "roundRect",
  83. itemWidth: 5,
  84. itemHeight: 5,
  85. itemGap: 7,
  86. },
  87. xAxis: {
  88. boundaryGap: false, //x轴从0开始
  89. axisLabel: {
  90. textStyle: {
  91. color: "#606769",
  92. },
  93. },
  94. axisLine: {
  95. lineStyle: {
  96. color: "#606769", //x轴的颜色
  97. width: 1, //轴线的宽度
  98. },
  99. },
  100. axisTick: {
  101. alignWithLabel: true,
  102. },
  103. splitLine: { show: false },
  104. data: this.getTimeStanp,
  105. },
  106. yAxis: {
  107. type: "value",
  108. name: this.unit,
  109. nameTextStyle: {
  110. color: "#828484",
  111. fontSize: 14,
  112. align: "right",
  113. },
  114. splitNumber: 3,
  115. splitLine: {
  116. show: false,
  117. },
  118. axisLabel: {
  119. show: true,
  120. textStyle: {
  121. color: "#606769",
  122. },
  123. },
  124. axisLine: {
  125. lineStyle: {
  126. color: "#606769", // y轴的颜色
  127. width: 1, //y轴线的宽度
  128. },
  129. },
  130. },
  131. grid: [
  132. {
  133. left: 50,
  134. right: 100,
  135. top: 30,
  136. bottom: 30,
  137. containLabel: true,
  138. },
  139. ],
  140. series: this.series,
  141. };
  142. myChart.setOption(options);
  143. },
  144. //处理数据
  145. getData(datas) {
  146. let data = [];
  147. //查询的测点没有数据情况
  148. if (datas && datas.length > 0) {
  149. datas.forEach((item) => {
  150. let result;
  151. if (item.value) {
  152. result = {
  153. dateTime: item.dateTime,
  154. value: (item.value / this.ratio).toFixed(2),
  155. };
  156. } else {
  157. result = item;
  158. }
  159. data.push(result);
  160. });
  161. return data;
  162. } else {
  163. return this.emptyData;
  164. }
  165. },
  166. },
  167. computed: {
  168. getTimeStanp() {
  169. // 当日0点时间
  170. var timeStamp = [];
  171. let stamp = new Date(new Date().setHours(0, 0, 0, 0)).getTime();
  172. if (this.predictFlag) {
  173. for (let i = 0; i < 48; i++) {
  174. timeStamp.push(dayjs(stamp).format("HH:mm"));
  175. this.emptyData.push("0");
  176. stamp = parseInt(stamp) + 30 * 60 * 1000;
  177. }
  178. timeStamp.push("24:00");
  179. } else {
  180. for (let i = 0; i < 24; i++) {
  181. timeStamp.push(dayjs(stamp).format("HH:mm"));
  182. this.emptyData.push("0");
  183. stamp = parseInt(stamp) + 60 * 60 * 1000;
  184. }
  185. }
  186. this.emptyData.push("0");
  187. return timeStamp;
  188. },
  189. series() {
  190. if (this.predictFlag) {
  191. let series = [
  192. {
  193. name: "预测功率",
  194. type: "line",
  195. smooth: true,
  196. symbol: "none",
  197. lineStyle: {
  198. width: 1,
  199. },
  200. color: "#05BB4C",
  201. data: this.getData(this.CurveValues[0]?.value),
  202. },
  203. {
  204. name: "保证功率",
  205. type: "line",
  206. smooth: true,
  207. symbol: "none",
  208. lineStyle: {
  209. width: 1,
  210. },
  211. color: "#C530C8",
  212. data: this.getData(this.CurveValues[1]?.value),
  213. },
  214. {
  215. name: "理论功率",
  216. type: "line",
  217. smooth: true,
  218. symbol: "none",
  219. lineStyle: {
  220. width: 1,
  221. },
  222. color: "#FF8700FF",
  223. data: this.getData(this.CurveValues[2]?.value),
  224. },
  225. {
  226. name: "实际功率",
  227. type: "line",
  228. smooth: true,
  229. symbol: "none",
  230. lineStyle: {
  231. width: 1,
  232. },
  233. color: "#1C99FFFF",
  234. textStyle: {
  235. color: "red",
  236. },
  237. data: this.getData(this.CurveValues[3]?.value),
  238. },
  239. ];
  240. return series;
  241. } else {
  242. let series = [
  243. {
  244. name: "保证功率",
  245. type: "line",
  246. smooth: true,
  247. symbol: "none",
  248. lineStyle: {
  249. width: 1,
  250. },
  251. color: "#C530C8",
  252. data: this.getData(this.CurveValues[0]?.value),
  253. },
  254. {
  255. name: "理论功率",
  256. type: "line",
  257. smooth: true,
  258. symbol: "none",
  259. lineStyle: {
  260. width: 1,
  261. },
  262. color: "#FF8700FF",
  263. data: this.getData(this.CurveValues[1]?.value),
  264. },
  265. {
  266. name: "实际功率",
  267. type: "line",
  268. smooth: true,
  269. symbol: "none",
  270. lineStyle: {
  271. width: 1,
  272. },
  273. color: "#1C99FFFF",
  274. textStyle: {
  275. color: "red",
  276. },
  277. data: this.getData(this.CurveValues[2]?.value),
  278. },
  279. ];
  280. return series;
  281. }
  282. },
  283. },
  284. watch: {
  285. CurveValues: {
  286. handler() {
  287. this.$nextTick(() => {
  288. this.getChart();
  289. });
  290. },
  291. },
  292. },
  293. };
  294. </script>
  295. <style lang="less" scoped>
  296. .powerTitle {
  297. font-size: 16px;
  298. font-family: "思源黑体";
  299. font-weight: 400;
  300. color: #ffffff;
  301. padding-top: 16px;
  302. padding-left: 27px;
  303. display: flex;
  304. flex-direction: row;
  305. align-items: center;
  306. justify-content: space-between;
  307. .tabs {
  308. display: flex;
  309. flex-direction: row;
  310. align-items: center;
  311. margin-right: 25px;
  312. margin-top: -10px;
  313. }
  314. .left {
  315. display: flex;
  316. align-items: center;
  317. justify-content: center;
  318. width: 70px;
  319. height: 25px;
  320. background: rgba(67, 81, 107, 0.6);
  321. border: 1px solid #3b4c6c;
  322. border-radius: 13px 0px 0px 13px;
  323. font-size: 14px;
  324. font-family: Microsoft YaHei;
  325. font-weight: 400;
  326. color: #b3b3b3;
  327. &.active {
  328. background: rgba(0, 70, 199, 0.5);
  329. color: #ffffff;
  330. }
  331. }
  332. .right {
  333. display: flex;
  334. align-items: center;
  335. justify-content: center;
  336. width: 70px;
  337. height: 25px;
  338. background: rgba(67, 81, 107, 0.6);
  339. border: 1px solid #3b4c6c;
  340. border-radius: 0px 13px 13px 0px;
  341. font-size: 14px;
  342. font-family: Microsoft YaHei;
  343. font-weight: 400;
  344. color: #b3b3b3;
  345. &.active {
  346. background: rgba(0, 70, 199, 0.5);
  347. color: #ffffff;
  348. }
  349. }
  350. }
  351. </style>