index.vue 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  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-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
  59. v-for="(item, index) in tableHead"
  60. :label="item"
  61. :key="index"
  62. align="center"
  63. :width="item == '指标名称' ? '200px' : ''"
  64. show-overflow-tooltip
  65. >
  66. <template #default="scope">
  67. <span>
  68. {{ scope.row[index] ? scope.row[index] : "--" }}
  69. </span>
  70. </template>
  71. </el-table-column>
  72. </el-table>
  73. </div>
  74. <div class="echarts">
  75. <div class="chart-wrapper">
  76. <BarCharts :list="list" width="100%" height="100%"></BarCharts>
  77. </div>
  78. </div>
  79. </div>
  80. </div>
  81. </template>
  82. <script>
  83. import BarCharts from "./components/barCharts.vue";
  84. import { companys } from "@/api/curveAnalyse";
  85. import { GetStationByCompany } from "@/api/factoryMonitor/index.js";
  86. import { getMonthElectricAnalyse } from "@/api/monthlyPerformanceAnalysis.js";
  87. export default {
  88. name: "monthElectricAnalyse",
  89. components: {
  90. // ChartColumnar,
  91. // Panel,
  92. BarCharts,
  93. },
  94. data() {
  95. return {
  96. loading: false,
  97. list: [],
  98. barList: [],
  99. tableData: [],
  100. tableHead: [
  101. "指标名称",
  102. "一月",
  103. "二月",
  104. "三月",
  105. "四月",
  106. "五月",
  107. "六月",
  108. "七月",
  109. "八月",
  110. "九月",
  111. "十月",
  112. "十一月",
  113. "十二月",
  114. "合计",
  115. ],
  116. company: "",
  117. companyOptions: [],
  118. station: "",
  119. stationOptions: [],
  120. selectValue: "功率预测分析",
  121. headers: [
  122. "计划电量",
  123. "预测电量",
  124. "实发电量",
  125. "当月占比(实发/计划)",
  126. "全年占比(实发/计划)",
  127. "短期准确率",
  128. ],
  129. };
  130. },
  131. watch: {},
  132. filters: {},
  133. created() {
  134. this.initialization();
  135. },
  136. methods: {
  137. initialization() {
  138. companys().then(({ data: res }) => {
  139. if (res.data) {
  140. this.companyOptions = res.data;
  141. this.company = res.data[0].id;
  142. this.getStation();
  143. }
  144. });
  145. },
  146. companyChanged() {
  147. this.station = "";
  148. this.getStation();
  149. },
  150. getStation() {
  151. GetStationByCompany({ companyids: this.company, type: 0 }).then(
  152. ({ data: res, code }) => {
  153. if (res.code == 200) {
  154. this.stationOptions = res.data;
  155. this.station = this.stationOptions[0].id;
  156. this.getDatas();
  157. }
  158. }
  159. );
  160. },
  161. getDatas() {
  162. this.loading = true;
  163. getMonthElectricAnalyse({ wpId: this.station }).then(({ data, code }) => {
  164. if (code == 200) {
  165. //合计列
  166. let hj = [
  167. data.bnjhdlhj,
  168. data.rfdlychj,
  169. data.bnsjdlhj,
  170. null,
  171. data.qnzbhj + "%",
  172. null,
  173. ];
  174. //处理纵向表格数据
  175. let resData = JSON.parse(JSON.stringify(data.value));
  176. // 数组按矩阵思路, 变成转置矩阵
  177. let matrixData = resData.map((row) => {
  178. let arr = [];
  179. for (let key in row) {
  180. if (key != "hours") {
  181. if (key.includes("zb") || key.includes("zql")) {
  182. arr.push(row[key] ? row[key] + "%" : row[key]);
  183. } else {
  184. arr.push(row[key]);
  185. }
  186. }
  187. }
  188. return arr;
  189. });
  190. // 加入标题拼接最终的数据
  191. this.tableData = matrixData[0].map((col, i) => {
  192. let newArr = new Array(
  193. this.tableHead.length - matrixData.length - 2
  194. ).fill(null);
  195. let array = [
  196. this.headers[i],
  197. ...matrixData.map((row) => {
  198. return row[i];
  199. }),
  200. ...newArr,
  201. hj[i],
  202. ];
  203. return array;
  204. });
  205. //处理图表数据
  206. let list = [
  207. {
  208. name: "计划电量",
  209. data: resData.map((ele) => ele.jhdl),
  210. color: "#4B55AE",
  211. },
  212. {
  213. name: "预测电量",
  214. data: resData.map((ele) => ele.rfdlyc),
  215. color: "#FF8300",
  216. },
  217. {
  218. name: "实发电量",
  219. data: resData.map((ele) => ele.sjdl),
  220. color: "#05BB4C",
  221. },
  222. ];
  223. this.list = list;
  224. this.loading = false;
  225. }
  226. });
  227. },
  228. },
  229. };
  230. </script>
  231. <style lang="less" scoped>
  232. .parcel-box {
  233. padding: 0 20px;
  234. box-sizing: border-box;
  235. width: 100%;
  236. height: 100%;
  237. .search {
  238. display: flex;
  239. flex-direction: row;
  240. padding: 15px 0;
  241. align-items: center;
  242. justify-content: space-between;
  243. .search-left {
  244. display: flex;
  245. flex-direction: row;
  246. align-items: center;
  247. }
  248. .search-right {
  249. position: relative;
  250. .select-back {
  251. position: absolute;
  252. right: 5px;
  253. top: 0px;
  254. z-index: 0;
  255. }
  256. .title-select {
  257. z-index: 2;
  258. }
  259. }
  260. button {
  261. margin-left: 10px;
  262. background: rgba(67, 81, 107, 0.3);
  263. border: 1px solid #274934;
  264. color: #b3b3b3;
  265. }
  266. .searchColor {
  267. background-color: rgba(5, 187, 76, 0.2);
  268. border: 1px solid #3b6c53;
  269. color: #b3b3b3;
  270. font-size: 14px;
  271. &:hover {
  272. background-color: rgba(5, 187, 76, 0.5);
  273. color: #ffffff;
  274. }
  275. }
  276. }
  277. .parcel-content {
  278. width: 100%;
  279. height: calc(100% - 88px);
  280. position: relative;
  281. img {
  282. position: absolute;
  283. top: 0;
  284. left: 0;
  285. width: 100%;
  286. height: 100%;
  287. }
  288. .line {
  289. .leftContent {
  290. width: 242px;
  291. height: 45px;
  292. line-height: 45px;
  293. background: url("~@/assets/imgs/title_left_bg.png");
  294. span {
  295. font-size: 16px;
  296. font-family: Microsoft YaHei;
  297. font-weight: 400;
  298. color: #ffffff;
  299. margin-left: 25px;
  300. }
  301. }
  302. }
  303. .echarts {
  304. height: calc(100% - 305px - 45px);
  305. padding: 0 20px;
  306. .chart-wrapper {
  307. height: 100%;
  308. width: 100%;
  309. }
  310. }
  311. .table-wrapper {
  312. height: 305px;
  313. width: 100%;
  314. padding: 0 20px;
  315. padding-top: 10px;
  316. }
  317. }
  318. }
  319. </style>