index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. <template>
  2. <div
  3. class="page-wrapper"
  4. v-loading="loading"
  5. element-loading-text="加载中..."
  6. element-loading-background="rgba(4, 12, 11, 0.8)"
  7. >
  8. <!-- 头部按钮选项 -->
  9. <HeaderNav @firstRender="firstRender" :isAll="true" />
  10. <div class="wrapper">
  11. <div class="chart-wrapper">
  12. <div
  13. class="chart-item"
  14. :data-type="$store.state.moreSty"
  15. v-for="(item, index) in list"
  16. :key="index"
  17. :style="{ width: isFixed ? '900px' : '935px' }"
  18. @dblclick="handleClick(list[index]?.name, index)"
  19. >
  20. <div class="chart-item-name">
  21. <p class="text" title="双击查看详情">{{ list[index]?.name }}</p>
  22. </div>
  23. <div class="chart-item-chart">
  24. <multipleLineChartVue
  25. ref="multipLineChart"
  26. height="100%"
  27. width="100%"
  28. :type="activeTab"
  29. :chartData="list[index]"
  30. />
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. <el-dialog
  36. class="dialogs"
  37. width="75%"
  38. top="120px"
  39. v-model="displayDialog"
  40. :show-close="true"
  41. @close="handleClose"
  42. destroy-on-close
  43. >
  44. <template #title>
  45. <div class="dialog-title">
  46. <div class="title">{{ showName }}功率预测详情</div>
  47. </div>
  48. </template>
  49. <div class="dialog-body" style="height: 600px">
  50. <img class="dialog-img" src="@assets/imgs/dialog.png" />
  51. <div class="dialog-form">
  52. <div class="date-wrapper">
  53. 开始时间
  54. <div style="margin-left: 10px">
  55. <el-date-picker
  56. v-model="beginDate"
  57. type="date"
  58. size="mini"
  59. :disabled-date="disabledDate"
  60. placeholder="选择日期"
  61. popper-class="date-select"
  62. value-format="YYYY-MM-DD"
  63. >
  64. </el-date-picker>
  65. </div>
  66. </div>
  67. <div class="date-wrapper">
  68. 结束时间
  69. <div style="margin-left: 10px">
  70. <el-date-picker
  71. v-model="endDate"
  72. size="mini"
  73. type="date"
  74. :disabled-date="disabledDate2"
  75. popper-class="date-select"
  76. placeholder="选择日期"
  77. value-format="YYYY-MM-DD"
  78. >
  79. </el-date-picker>
  80. </div>
  81. </div>
  82. <div class="btns">
  83. <el-button round size="mini" class="buttons" @click="handleSearch"
  84. >查 询</el-button
  85. >
  86. </div>
  87. </div>
  88. <div class="dialog-chart" v-if="!isDouble">
  89. <multipleLineChartVue
  90. ref="multipLineChart"
  91. :type="activeTab"
  92. :chartData="singleChartData"
  93. />
  94. </div>
  95. <div class="dialog-chart" v-if="isDouble">
  96. <div class="carousel-wrapper">
  97. <el-carousel trigger="click" height="100%" :autoplay="false">
  98. <el-carousel-item
  99. v-for="(chart, key) in doubleChartData"
  100. :key="key"
  101. :name="doubleChartData[key]?.name"
  102. >
  103. <multipleLineChartVue
  104. ref="multipLineChart"
  105. :chartData="doubleChartData[key]"
  106. width="1392px"
  107. :type="activeTab"
  108. height="580px"
  109. :isDouble="isDouble"
  110. />
  111. </el-carousel-item>
  112. </el-carousel>
  113. </div>
  114. </div>
  115. </div>
  116. </el-dialog>
  117. </div>
  118. </template>
  119. <script>
  120. import HeaderNav from "@/components/headerNavSta/index.vue";
  121. import multipleLineChartVue from "./components/multiple-line-chart.vue";
  122. import { GetAllPowerData, GetPowerData } from "@/api/factoryMonitor/index.js";
  123. import dayjs from "dayjs";
  124. import dataJson from "./dataJson.json"
  125. export default {
  126. name: "PowerCurveMatrix", //全景监视
  127. data() {
  128. return {
  129. activeTab: -1,
  130. list: {},
  131. displayDialog: false,
  132. showName: "",
  133. beginDate: "",
  134. endDate: "",
  135. format: "YYYY-MM-DD",
  136. doubleChartData: [],
  137. singleChartData: {},
  138. isDouble: true,
  139. showWpid: "",
  140. isSearch: false,
  141. timer: null,
  142. loading: false,
  143. flag: false,
  144. };
  145. },
  146. components: {
  147. HeaderNav,
  148. multipleLineChartVue,
  149. },
  150. created() {
  151. this.beginDate = dayjs().startOf("day").format(this.format);
  152. this.endDate = dayjs().add(3, "day").format(this.format);
  153. // this.init();
  154. },
  155. mounted() {
  156. this.list = dataJson.powerData
  157. this.loading = false;
  158. // this.timer = setInterval(() => {
  159. // this.flag = true;
  160. // this.init();
  161. // }, 15 * 60 * 1000);
  162. },
  163. unmounted() {
  164. clearInterval(this.timer);
  165. this.timer = null;
  166. },
  167. methods: {
  168. // 时间选择器第一个禁用
  169. disabledDate(time) {
  170. if (this.endDate) {
  171. return time.getTime() > Date.parse(this.endDate);
  172. } else {
  173. return null;
  174. }
  175. },
  176. // 时间选择器第二个禁用
  177. disabledDate2(time) {
  178. if (this.beginDate) {
  179. return time.getTime() < Date.parse(this.beginDate);
  180. } else {
  181. return null;
  182. }
  183. },
  184. firstRender(tab) {
  185. this.activeTab = tab;
  186. clearInterval(this.timer);
  187. this.timer = null;
  188. this.flag = false;
  189. // this.init();
  190. // this.timer = setInterval(() => {
  191. // this.flag = true;
  192. // this.init();
  193. // }, 15 * 60 * 1000);
  194. },
  195. init() {
  196. if (this.flag) {
  197. this.loading = false;
  198. } else {
  199. this.loading = true;
  200. }
  201. GetAllPowerData({
  202. type: this.activeTab == -1 ? "F" : "G",
  203. beginDate: this.beginDate,
  204. endDate: this.endDate,
  205. }).then(({ code, data }) => {
  206. this.loading = false;
  207. if (code == 200) {
  208. this.list = this.dealRes(data);
  209. }
  210. });
  211. },
  212. dealRes(res) {
  213. let resData = JSON.parse(JSON.stringify(res));
  214. for (let key in resData) {
  215. resData[key] = {
  216. name: "",
  217. ycgl: [],
  218. llgl: [],
  219. sjgl: [],
  220. pjfs: [],
  221. ycfs: [],
  222. xAxis: [],
  223. };
  224. }
  225. for (let index in res) {
  226. resData[index].name = res[index][0].name;
  227. res[index].forEach((ele) => {
  228. // resData[index].pjfs.push(ele.pjfs);
  229. // resData[index].ycfs.push(ele.ycfs);
  230. // resData[index].sjgl.push(ele.sjgl);
  231. // resData[index].ycgl.push(ele.ycgl);
  232. // resData[index].llgl.push(ele.llgl);
  233. // resData[index].xAxis.push(dayjs(ele.hours).format("MM-DD HH:mm:ss"));
  234. resData[index].pjfs= ele.pjfs;
  235. resData[index].ycfs= ele.ycfs;
  236. resData[index].sjgl= ele.sjgl;
  237. resData[index].ycgl= ele.ycgl;
  238. resData[index].llgl= ele.llgl;
  239. resData[index].xAxis = ele.xAxis
  240. });
  241. }
  242. return resData;
  243. },
  244. handleClick(name, id) {
  245. this.showName = name;
  246. this.showWpid = id;
  247. this.beginDate = dayjs().startOf("day").format(this.format);
  248. this.endDate = dayjs().add(10, "day").format(this.format);
  249. this.displayDialog = true;
  250. // this.getPowerData();
  251. this.doubleChartData = this.dealRes(dataJson.diaData);
  252. },
  253. getPowerData() {
  254. GetPowerData({
  255. wpId: this.showWpid,
  256. beginDate: this.beginDate,
  257. endDate: this.endDate,
  258. }).then((res) => {
  259. if (res && res.code == 200) {
  260. if (!this.isSearch) {
  261. this.displayDialog = true;
  262. }
  263. if (Object.keys(res.data).length < 2) {
  264. this.isDouble = false;
  265. this.singleChartData = this.dealRes(res.data)[this.showWpid];
  266. } else if (Object.keys(res.data).length >= 2) {
  267. this.isDouble = true;
  268. this.doubleChartData = this.dealRes(res.data);
  269. }
  270. }
  271. });
  272. },
  273. handleClose() {
  274. this.isSearch = false;
  275. this.showName = "";
  276. this.showWpid = "";
  277. this.singleChartData = [];
  278. this.doubleChartData = [];
  279. },
  280. handleSearch() {
  281. this.isSearch = true;
  282. this.getPowerData();
  283. },
  284. },
  285. computed: {
  286. isFixed() {
  287. return this.$store.state.isFixed;
  288. },
  289. },
  290. };
  291. </script>
  292. <style scoped lang="less">
  293. .carousel-wrapper {
  294. height: 100%;
  295. width: 100%;
  296. .el-carousel {
  297. height: 100%;
  298. width: 100%;
  299. .el-carousel__container {
  300. height: 100%;
  301. width: 100%;
  302. .el-carousel__item {
  303. height: 100%;
  304. width: 100%;
  305. }
  306. }
  307. }
  308. }
  309. .el-carousel__item h3 {
  310. color: #475669;
  311. opacity: 0.75;
  312. line-height: 150px;
  313. margin: 0;
  314. text-align: center;
  315. }
  316. .page-wrapper {
  317. height: 100%;
  318. width: 100%;
  319. .wrapper {
  320. height: calc(100% - 57px);
  321. width: 100%;
  322. padding: 0 20px 10px 20px;
  323. overflow-y: auto;
  324. }
  325. }
  326. .chart-wrapper {
  327. width: 100%;
  328. display: grid;
  329. grid-template-columns: auto auto;
  330. grid-auto-rows: 256px;
  331. grid-gap: 20px;
  332. padding-bottom: 10px;
  333. .chart-item[data-type~="greenSty"] {
  334. background: url("~@/assets/imgs/power-bg1.png") no-repeat;
  335. }
  336. .chart-item[data-type~="blueSty"] {
  337. background: url("~@/assets/imgs/power-bg2.png") no-repeat;
  338. }
  339. .chart-item {
  340. width: 935px;
  341. height: 256px;
  342. // border: 1px solid #fff;
  343. display: flex;
  344. align-items: center;
  345. background-size: 100% 100%;
  346. cursor: pointer;
  347. .chart-item-name {
  348. display: flex;
  349. width: 50px;
  350. height: 256px;
  351. border-right: 1px solid #3a3f43;
  352. justify-content: center;
  353. align-items: center;
  354. .text {
  355. writing-mode: vertical-lr;
  356. margin: 0;
  357. }
  358. }
  359. .chart-item-chart {
  360. width: calc(100% - 50px);
  361. height: 100%;
  362. }
  363. }
  364. }
  365. .dialog-body {
  366. .dialog-form {
  367. display: flex;
  368. align-items: center;
  369. height: 38px;
  370. .date-wrapper {
  371. display: flex;
  372. align-items: center;
  373. font-size: 13px;
  374. color: #b3b3b3;
  375. margin-right: 10px;
  376. }
  377. .buttons {
  378. background-color: rgba(5, 187, 76, 0.2);
  379. border: 1px solid #3b6c53;
  380. color: #b3b3b3;
  381. font-size: 14px;
  382. &:hover,
  383. &.active {
  384. background-color: rgba(5, 187, 76, 0.5);
  385. color: #ffffff;
  386. }
  387. }
  388. }
  389. .dialog-chart {
  390. height: calc(100% - 38px);
  391. }
  392. }
  393. </style>