index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. <template>
  2. <div class="parcel-box">
  3. <div class="search">
  4. <div class="search-left">
  5. <el-select
  6. size="mini"
  7. v-model="company"
  8. placeholder="请选择"
  9. @change="companyChanged"
  10. >
  11. <el-option
  12. v-for="item in companyOptions"
  13. :key="item.id"
  14. :label="item.aname"
  15. :value="item.id"
  16. >
  17. </el-option>
  18. </el-select>
  19. <div class="tabCut">
  20. <div
  21. @click="tabClick(val.id)"
  22. :class="[
  23. tabIndex === val.id ? 'active' : '',
  24. displayDetail ? 'disabled' : '',
  25. ]"
  26. v-for="val in tabOptions"
  27. :key="val.id"
  28. >
  29. <span>{{ val.name }}</span>
  30. </div>
  31. </div>
  32. <el-select
  33. size="mini"
  34. v-model="station"
  35. placeholder="请选择"
  36. style="margin-left: 15px"
  37. >
  38. <el-option
  39. v-for="item in stationOptions"
  40. :key="item.id"
  41. :label="item.aname"
  42. :value="item.id"
  43. >
  44. </el-option>
  45. </el-select>
  46. <el-date-picker
  47. size="mini"
  48. type="year"
  49. v-model="year"
  50. value-format="YYYY"
  51. placeholder="请选择"
  52. style="margin-left: 15px"
  53. popper-class="date-select"
  54. >
  55. </el-date-picker>
  56. <el-radio-group v-model="filter" size="mini">
  57. <el-radio label="1"> 同比 </el-radio>
  58. <el-radio label="2"> 环比 </el-radio>
  59. </el-radio-group>
  60. <el-button round size="mini" class="searchColor" @click="getDatas"
  61. >搜索</el-button
  62. >
  63. </div>
  64. </div>
  65. <div
  66. class="parcel-content"
  67. v-loading="loading"
  68. element-loading-background="rgba(4, 12, 11, 0.8)"
  69. >
  70. <!-- <img src="@/assets/imgs/glycfx-bg1.png" alt="" /> -->
  71. <div class="line clearfix">
  72. <div class="leftContent">
  73. <span>{{ selectValue }}</span>
  74. </div>
  75. </div>
  76. <div class="table-wrapper">
  77. <el-table
  78. :data="tableData"
  79. size="mini"
  80. stripe
  81. width="100%"
  82. height="100%"
  83. >
  84. <el-table-column align="center" label="指标名称" width="128">
  85. <template #default="{ row }">
  86. {{ row[0] }}
  87. </template>
  88. </el-table-column>
  89. <el-table-column
  90. v-for="(item, index) in tableHead.slice(1, 13)"
  91. :label="item.title"
  92. :key="index"
  93. align="center"
  94. show-overflow-tooltip
  95. >
  96. <el-table-column
  97. label="本月"
  98. width="66"
  99. v-if="filter == 1 || filter == 2"
  100. align="center"
  101. show-overflow-tooltip
  102. >
  103. <template #default="scope">
  104. <span>
  105. {{
  106. scope.row[index + 1][0] || scope.row[index + 1][0] == 0
  107. ? scope.row[index + 1][0]
  108. : "--"
  109. }}
  110. </span>
  111. </template>
  112. </el-table-column>
  113. <el-table-column
  114. label="同比"
  115. width="66"
  116. v-if="filter == 1"
  117. align="center"
  118. show-overflow-tooltip
  119. >
  120. <template #default="scope">
  121. <span>
  122. {{
  123. scope.row[index + 1][1] || scope.row[index + 1][1] == 0
  124. ? scope.row[index + 1][1]
  125. : "--"
  126. }}
  127. </span>
  128. </template>
  129. </el-table-column>
  130. <el-table-column
  131. label="环比"
  132. width="66"
  133. v-if="filter == 2"
  134. align="center"
  135. show-overflow-tooltip
  136. >
  137. <template #default="scope">
  138. <span>
  139. {{
  140. scope.row[index + 1][2] || scope.row[index + 1][2] == 0
  141. ? scope.row[index + 1][2]
  142. : "--"
  143. }}
  144. </span>
  145. </template>
  146. </el-table-column>
  147. </el-table-column>
  148. <el-table-column
  149. align="center"
  150. label="合计"
  151. width="76"
  152. show-overflow-tooltip
  153. >
  154. <template #default="{ row }">
  155. {{ row[13] }}
  156. </template>
  157. </el-table-column>
  158. </el-table>
  159. </div>
  160. <div class="echarts">
  161. <div class="chart-wrapper">
  162. <LineCharts :list="list" width="100%" height="100%" />
  163. </div>
  164. </div>
  165. </div>
  166. </div>
  167. </template>
  168. <script>
  169. import LineCharts from "./components/lineCharts.vue";
  170. import { companys } from "@/api/curveAnalyse";
  171. import { GetStationByCompany } from "@/api/factoryMonitor/index.js";
  172. import {
  173. getOwnDemand,
  174. getAllStation,
  175. } from "@/api/monthlyPerformanceAnalysis.js";
  176. export default {
  177. name: "StationElectricAnalyse",
  178. components: {
  179. // ChartColumnar,
  180. // Panel,
  181. LineCharts,
  182. },
  183. data() {
  184. return {
  185. loading: false,
  186. list: [],
  187. barList: [],
  188. tableData: [],
  189. showDisplay:true,
  190. tableHead: [
  191. { title: "指标名称", children: [] },
  192. { title: "一月", children: ["本月", "同比", "环比"] },
  193. { title: "二月", children: ["本月", "同比", "环比"] },
  194. { title: "三月", children: ["本月", "同比", "环比"] },
  195. { title: "四月", children: ["本月", "同比", "环比"] },
  196. { title: "五月", children: ["本月", "同比", "环比"] },
  197. { title: "六月", children: ["本月", "同比", "环比"] },
  198. { title: "七月", children: ["本月", "同比", "环比"] },
  199. { title: "八月", children: ["本月", "同比", "环比"] },
  200. { title: "九月", children: ["本月", "同比", "环比"] },
  201. { title: "十月", children: ["本月", "同比", "环比"] },
  202. { title: "十一月", children: ["本月", "同比", "环比"] },
  203. { title: "十二月", children: ["本月", "同比", "环比"] },
  204. { title: "合计", children: [] },
  205. ],
  206. tabIndex: -1,
  207. tabOptions: [
  208. { id: -1, name: "风电" },
  209. { id: -2, name: "光伏" },
  210. ],
  211. company: "",
  212. companyOptions: [],
  213. station: "",
  214. stationOptions: [],
  215. year: "2023",
  216. selectValue: "综合场用电量分析",
  217. headers: [
  218. "综合场用电量",
  219. "发电量",
  220. "上网电量",
  221. "购网电量",
  222. "综合场用电率(%)",
  223. ],
  224. filter: "1",
  225. };
  226. },
  227. watch: {},
  228. created() {
  229. this.initialization();
  230. },
  231. methods: {
  232. tabClick(tab) {
  233. this.tabIndex = tab;
  234. if (tab == -2) {
  235. this.company = "SXJ_KGDL_GFFD_ZGS";
  236. this.station = "";
  237. this.getStation();
  238. } else {
  239. this.company = this.companyOptions[0].id;
  240. this.station = "";
  241. this.getStation();
  242. }
  243. },
  244. initialization() {
  245. companys().then(({ data: res }) => {
  246. if (res.data) {
  247. this.companyOptions = res.data;
  248. this.company = res.data[0].id;
  249. this.getStation();
  250. }
  251. });
  252. },
  253. companyChanged() {
  254. this.station = "";
  255. this.getStation();
  256. },
  257. getStation() {
  258. GetStationByCompany({
  259. companyids: this.company,
  260. type: this.tabIndex,
  261. }).then(({ data: res, code }) => {
  262. if (res.code == 200) {
  263. this.stationOptions = res.data;
  264. this.station = this.stationOptions[0].id;
  265. this.getDatas();
  266. }
  267. });
  268. },
  269. getDatas() {
  270. this.loading = true;
  271. getOwnDemand({ wpId: this.station, year: this.year }).then(
  272. ({ data, code }) => {
  273. if (code == 200) {
  274. //合计列
  275. let hj = [
  276. data.zhcydlsum,
  277. data.sjdlsum,
  278. data.swdlsum,
  279. data.gwdlsum,
  280. data.zhcydllsum + "%",
  281. ];
  282. //处理纵向表格数据
  283. let resData = JSON.parse(JSON.stringify(data.value));
  284. let subKey = [
  285. ["zhcydl", "zhcydltb", "zhcydlhb"],
  286. ["sjdl", "sjdltb", "sjdlhb"],
  287. ["swdl", "swdltb", "swdlhb"],
  288. ["gwdl", "gwdltb", "gwdlhb"],
  289. ["zhcydll", "zhcydlltb", "zhcydllhb"],
  290. ];
  291. // 数组按矩阵思路, 变成转置矩阵
  292. let matrixData = resData.map((row) => {
  293. let arr = [];
  294. for (var i = 0; i <= 4; i++) {
  295. let subArr = [];
  296. subKey[i].forEach((sub) => {
  297. subArr.push(row[sub]);
  298. });
  299. arr.push(subArr);
  300. }
  301. return arr;
  302. });
  303. // 加入标题拼接最终的数据
  304. this.tableData = matrixData[0].map((col, i) => {
  305. let newArr = new Array(
  306. this.tableHead.length - matrixData.length - 2
  307. ).fill(null);
  308. let array = [
  309. this.headers[i],
  310. ...matrixData.map((row) => {
  311. return row[i];
  312. }),
  313. ...newArr,
  314. hj[i],
  315. ];
  316. return array;
  317. });
  318. // .map((item) => {
  319. // item[item.length - 1] = [item[item.length - 1]];
  320. // return item;
  321. // });
  322. //处理图表数据
  323. let list = [
  324. {
  325. name: "综合场用电量",
  326. data: resData.map((ele) => ele.zhcydl),
  327. color: "#4B55AE",
  328. },
  329. {
  330. name: "实发电量",
  331. data: resData.map((ele) => ele.sjdl),
  332. color: "#05BB4C",
  333. },
  334. {
  335. name: "上网电量",
  336. data: resData.map((ele) => ele.swdl),
  337. color: "#21a4f7",
  338. },
  339. {
  340. name: "购网电量",
  341. data: resData.map((ele) => ele.gwdl),
  342. color: "#FF8300",
  343. },
  344. ];
  345. this.list = list;
  346. this.loading = false;
  347. }
  348. }
  349. );
  350. },
  351. },
  352. };
  353. </script>
  354. <style lang="less" scoped>
  355. .parcel-box {
  356. padding: 0 20px;
  357. box-sizing: border-box;
  358. width: 100%;
  359. height: 100%;
  360. .search {
  361. display: flex;
  362. flex-direction: row;
  363. padding: 15px 0;
  364. align-items: center;
  365. justify-content: space-between;
  366. .search-left {
  367. display: flex;
  368. flex-direction: row;
  369. align-items: center;
  370. .tabCut {
  371. display: inline-block;
  372. margin: 0 10px;
  373. div {
  374. display: inline-block;
  375. width: 60px;
  376. height: 27px;
  377. border: 1px solid #274934;
  378. text-align: center;
  379. line-height: 25px;
  380. cursor: pointer;
  381. }
  382. div:nth-child(1) {
  383. border-radius: 13px 0px 0px 13px;
  384. border-right-width: 0;
  385. }
  386. div:nth-child(2) {
  387. border-radius: 0px 13px 13px 0px;
  388. }
  389. .active {
  390. background-color: rgba(5, 187, 76, 0.9);
  391. color: #fff;
  392. }
  393. .disabled {
  394. cursor: not-allowed;
  395. pointer-events: none;
  396. }
  397. }
  398. }
  399. .search-right {
  400. position: relative;
  401. .select-back {
  402. position: absolute;
  403. right: 5px;
  404. top: 0px;
  405. z-index: 0;
  406. }
  407. .title-select {
  408. z-index: 2;
  409. }
  410. }
  411. button {
  412. margin-left: 10px;
  413. background: rgba(67, 81, 107, 0.3);
  414. border: 1px solid #274934;
  415. color: #b3b3b3;
  416. }
  417. .searchColor {
  418. background-color: rgba(5, 187, 76, 0.2);
  419. border: 1px solid #3b6c53;
  420. color: #b3b3b3;
  421. font-size: 14px;
  422. &:hover {
  423. background-color: rgba(5, 187, 76, 0.5);
  424. color: #ffffff;
  425. }
  426. }
  427. }
  428. .parcel-content {
  429. width: 100%;
  430. height: calc(100% - 88px);
  431. // position: relative;
  432. background: url("~@/assets/imgs/glycfx-bg1.png") no-repeat;
  433. background-size: 100% 100%;
  434. background-position: center;
  435. img {
  436. position: absolute;
  437. top: 0;
  438. left: 0;
  439. width: 100%;
  440. height: 100%;
  441. }
  442. .line {
  443. .leftContent {
  444. width: 242px;
  445. height: 45px;
  446. line-height: 45px;
  447. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  448. span {
  449. font-size: 16px;
  450. font-family: Microsoft YaHei;
  451. font-weight: 400;
  452. color: #05bb4c;
  453. margin-left: 25px;
  454. }
  455. }
  456. }
  457. .echarts {
  458. height: calc(100% - 305px - 45px);
  459. padding: 0 20px;
  460. .chart-wrapper {
  461. height: 100%;
  462. width: 100%;
  463. }
  464. }
  465. .table-wrapper {
  466. height: 305px;
  467. width: 100%;
  468. padding: 0 20px;
  469. padding-top: 10px;
  470. }
  471. }
  472. }
  473. .el-radio-group::v-deep {
  474. margin-left: 15px;
  475. display: flex;
  476. align-items: center;
  477. .el-radio__inner:hover {
  478. border-color: #05bb4c;
  479. }
  480. }
  481. .el-table--border::v-deep {
  482. th.el-table__cell {
  483. border-bottom: 1px solid #000 !important;
  484. }
  485. }
  486. </style>