index.vue 8.3 KB

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