index.vue 11 KB

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