index.vue 8.6 KB

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