index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. <template>
  2. <div class="monthMachine">
  3. <div class="monthMachine_top">
  4. <el-select
  5. size="mini"
  6. v-model="companyVal"
  7. placeholder="请选择"
  8. @change="changeCompan"
  9. >
  10. <el-option
  11. v-for="item in companyOptions"
  12. :key="item.id"
  13. :label="item.aname"
  14. :value="item.id"
  15. >
  16. </el-option>
  17. </el-select>
  18. <!-- <div class="tabCut">
  19. <div
  20. @click="changeBtnsd(val.id)"
  21. :class="tabIndex === val.id ? 'active' : ''"
  22. v-for="val in tabOptions"
  23. :key="val.id"
  24. >
  25. <span>{{ val.name }}</span>
  26. </div>
  27. </div> -->
  28. <div class="station">
  29. 场站:
  30. <el-select
  31. size="mini"
  32. v-model="stationVal"
  33. placeholder="请选择"
  34. clearable
  35. @change="changeStation"
  36. >
  37. <el-option
  38. v-for="item in stationOptions"
  39. :key="item.id"
  40. :label="item.name"
  41. :value="item.id"
  42. >
  43. </el-option>
  44. </el-select>
  45. </div>
  46. <div class="station">
  47. 时间
  48. <div>
  49. <el-date-picker
  50. v-model="pickerTimer"
  51. type="month"
  52. value-format="YYYY-MM"
  53. placeholder="选择日期"
  54. popper-class="date-select"
  55. >
  56. </el-date-picker>
  57. </div>
  58. </div>
  59. <div class="but">
  60. <el-button round size="mini" class="buttons" @click="seachData"
  61. >搜 索</el-button
  62. >
  63. <el-button round size="mini" class="buttons" @click="downXlsxFn"
  64. >导出</el-button
  65. >
  66. </div>
  67. </div>
  68. <div
  69. style="
  70. background: rgba(0, 0, 0, 0.4);
  71. height: calc(100% - 48px);
  72. padding-bottom: 15px;
  73. "
  74. >
  75. <div class="monthMachine_title clearfix">
  76. <div class="leftContent floatLeft"><span>单机月度分析</span></div>
  77. </div>
  78. <div class="economicTable1">
  79. <el-table
  80. :data="monthMachineData"
  81. stripe
  82. size="mini"
  83. height="calc(100% - 40px)"
  84. ref="month_table"
  85. style="width: 100%"
  86. >
  87. <el-table-column align="center" label="机组名称" width="60">
  88. <template #default="scope">
  89. <span
  90. @click="reportDialogFn(scope.row)"
  91. style="cursor: pointer; color: #67b9ff"
  92. >{{ scope.row.windturbineName }}</span
  93. >
  94. </template>
  95. </el-table-column>
  96. <el-table-column
  97. v-for="(item, index) in tableHeader"
  98. :key="index"
  99. sortable
  100. :prop="item.code"
  101. :label="item.title"
  102. align="right"
  103. header-align="center"
  104. >
  105. <template #header="scope">
  106. <div>
  107. {{
  108. scope.column.label.slice(0, scope.column.label.indexOf("("))
  109. }}
  110. </div>
  111. <div>
  112. {{ scope.column.label.slice(scope.column.label.indexOf("(")) }}
  113. </div>
  114. </template>
  115. </el-table-column>
  116. </el-table>
  117. <el-pagination
  118. @size-change="handleSizeChange"
  119. @current-change="handleCurrentChange"
  120. :current-page="page.currentPage"
  121. :page-size="page.pagesize"
  122. :page-sizes="[21, 50, 100, 500]"
  123. layout="total, sizes, prev, pager, next, jumper"
  124. :total="page.total"
  125. >
  126. </el-pagination>
  127. </div>
  128. </div>
  129. <el-dialog
  130. v-model="dialogVisible"
  131. width="70%"
  132. top="40px"
  133. custom-class="modal"
  134. :close-on-click-modal="false"
  135. >
  136. <template #title>
  137. <div class="dialog-title">
  138. <div class="title">运行指标性能分析报告</div>
  139. </div>
  140. </template>
  141. <div class="body" :style="pageHeight">
  142. <report-dialog ref="reportDia"></report-dialog>
  143. </div>
  144. </el-dialog>
  145. </div>
  146. </template>
  147. <script>
  148. import {
  149. getApicompanyslist,
  150. getApiwpByCplistlist,
  151. getApisingleanalysisMainlist,
  152. } from "@/api/monthlyPerformanceAnalysis";
  153. import ReportDialog from "./reportDialog.vue";
  154. import utils from "@/utills/downXlsx";
  155. import dataJson from "./dataJson.json"
  156. export default {
  157. name: "MonthlyAnalysis", //单机月度分析
  158. components: {
  159. ReportDialog,
  160. },
  161. data() {
  162. return {
  163. companyVal: "",
  164. companyOptions: [],
  165. stationVal: "",
  166. stationOptions: [],
  167. pickerTimer: "",
  168. pickerTimerYear: "",
  169. pickerTimerMonth: "",
  170. monthMachineData: [],
  171. showBtn: true,
  172. tabIndex: -1,
  173. // tabOptions: [
  174. // { id: -1, name: "风电" },
  175. // { id: -2, name: "光伏" },
  176. // ],
  177. tableHeader: [
  178. { title: "实际发电量(万kWh)", code: "fdl" },
  179. { title: "理论发电量(万kWh)", code: "llfdl" },
  180. { title: "设备利用小时数(小时)", code: "lyxs" },
  181. { title: "等效可用系数(%)", code: "dxklyxs" },
  182. { title: "平均风速(m/s)", code: "fs" },
  183. { title: "小风切入风速(m/s)", code: "xfqr" },
  184. { title: "有效风时数(小时)", code: "yxfss" },
  185. { title: "故障损失电量(万kWh)", code: "gzss" },
  186. { title: "调度限电损失(万kWh)", code: "xdss" },
  187. { title: "计划检修损失(万kWh)", code: "jxss" },
  188. { title: "性能未达标损失(万kWh)", code: "xnss" },
  189. { title: "受累损失电量(万kWh)", code: "slss" },
  190. { title: "故障停用时间(小时)", code: "gzxs" },
  191. { title: "检修停用时间(小时)", code: "jxxs" },
  192. { title: "机组功率一致性(%)", code: "glyzxxs" },
  193. ],
  194. tableHeaderGf: [
  195. { title: "实际发电量(万kWh)", code: "fdl" },
  196. { title: "理论发电量(万kWh)", code: "llfdl" },
  197. { title: "设备利用小时数(小时)", code: "lyxs" },
  198. { title: "等效可用系数(%)", code: "dxklyxs" },
  199. { title: "平均光照度(m/s)", code: "fs" },
  200. { title: "有效光时数(小时)", code: "yxfss" },
  201. { title: "故障损失电量(万kWh)", code: "gzss" },
  202. { title: "调度限电损失(万kWh)", code: "xdss" },
  203. { title: "计划检修损失(万kWh)", code: "jxss" },
  204. { title: "性能未达标损失(万kWh)", code: "xnss" },
  205. { title: "受累损失电量(万kWh)", code: "slss" },
  206. { title: "故障停用时间(小时)", code: "gzxs" },
  207. { title: "检修停用时间(小时)", code: "jxxs" },
  208. { title: "机组功率一致性(%)", code: "glyzxxs" },
  209. ],
  210. page: {
  211. pagesize: 21,
  212. currentPage: 1,
  213. total: 0,
  214. },
  215. dialogTitle: "",
  216. dialogVisible: false,
  217. isFullScreen: false,
  218. };
  219. },
  220. created() {
  221. const clientHeight =
  222. document.documentElement.clientHeight || document.body.clientHeight;
  223. if (clientHeight === 1080) {
  224. this.isFullScreen = true;
  225. } else {
  226. this.isFullScreen = false;
  227. }
  228. this.monthMachineData = dataJson.data.data.values;
  229. this.page.total = dataJson.data.data.total;
  230. this.getCompanyData();
  231. },
  232. mounted() {
  233. window.onresize = () => {
  234. const clientHeight =
  235. document.documentElement.clientHeight || document.body.clientHeight;
  236. this.isFullScreen = window.screen.height == clientHeight;
  237. this.getTableData();
  238. };
  239. },
  240. methods: {
  241. // 获取公司列表
  242. async getCompanyData() {
  243. this.companyOptions = [];
  244. this.pickerTimer = this.getchangeTime(new Date());
  245. const { data: datas } = await getApicompanyslist();
  246. this.companyOptions = datas.data;
  247. this.companyVal = datas.data[0]?.id;
  248. this.getStationData(this.companyVal);
  249. },
  250. // changeBtnsd(id) {
  251. // this.tabIndex = id;
  252. // this.stationVal = "";
  253. // this.stationOptions = [];
  254. // this.getStationData();
  255. // },
  256. changeCompan(val) {
  257. this.companyVal = val;
  258. this.getStationData();
  259. },
  260. async getStationData() {
  261. let params = {
  262. type: this.tabIndex,
  263. companyid: this.companyVal,
  264. };
  265. const { data: datas } = await getApiwpByCplistlist(params);
  266. this.stationOptions = datas.data;
  267. this.stationVal = datas.data[0].id;
  268. this.getTableData();
  269. },
  270. changeStation(val) {
  271. this.stationVal = val;
  272. this.getTableData();
  273. },
  274. seachData() {
  275. this.getTableData();
  276. },
  277. async getTableData() {
  278. let params = {
  279. cmId: this.companyVal,
  280. type: this.tabIndex,
  281. pageNum: this.page.currentPage,
  282. pageSize: this.page.pagesize,
  283. year: this.pickerTimer.slice(0, this.pickerTimer.indexOf("-")),
  284. month: this.pickerTimer.slice(this.pickerTimer.indexOf("-") + 1),
  285. wpId: this.stationVal,
  286. };
  287. const { data: datas } = await getApisingleanalysisMainlist(params);
  288. this.monthMachineData = datas.data.values;
  289. this.page.total = datas.data.total;
  290. },
  291. handleSizeChange(val) {
  292. this.page.currentPage = 1;
  293. this.page.pagesize = val;
  294. this.getTableData();
  295. },
  296. handleCurrentChange(val) {
  297. this.page.currentPage = val;
  298. this.getTableData();
  299. },
  300. //转换时间
  301. getchangeTime(date) {
  302. var y = date.getFullYear();
  303. var m = date.getMonth() + 1;
  304. m = m < 10 ? "0" + m : m;
  305. return y + "-" + m;
  306. },
  307. reportDialogFn(row) {
  308. this.dialogVisible = true;
  309. this.dialogTitle = row.wtcode;
  310. this.pickerTimerYear = this.pickerTimer.substring(
  311. 0,
  312. this.pickerTimer.indexOf("-")
  313. );
  314. this.pickerTimerMonth = this.pickerTimer.substring(
  315. this.pickerTimer.indexOf("-") + 1
  316. );
  317. this.$nextTick(() => {
  318. this.$refs.reportDia.pickerTimerYear = this.pickerTimerYear;
  319. this.$refs.reportDia.pickerTimerMonth = this.pickerTimerMonth;
  320. this.$refs.reportDia.dialogTitle = this.dialogTitle;
  321. this.$refs.reportDia.init(row);
  322. });
  323. },
  324. downXlsxFn() {
  325. let header = [];
  326. this.tableHeader.forEach((it) => {
  327. if (it.title !== "操作") {
  328. header.push(it.title);
  329. }
  330. });
  331. if (this.monthMachineData.length > 0) {
  332. utils.exportExcel(
  333. this.$refs["month_table"].$el,
  334. header,
  335. "单机月度分析"
  336. );
  337. }
  338. },
  339. },
  340. };
  341. </script>
  342. <style lang="less" scoped>
  343. .monthMachine {
  344. padding: 0 20px;
  345. height: 100%;
  346. .monthMachine_title {
  347. .leftContent {
  348. width: 242px;
  349. height: 41px;
  350. line-height: 41px;
  351. background: url("~@/assets/imgs/title_left_bg.png") no-repeat;
  352. span {
  353. font-size: 16px;
  354. font-weight: 400;
  355. color: #05bb4c;
  356. margin-left: 25px;
  357. }
  358. }
  359. .floatLeft {
  360. float: left;
  361. }
  362. .floatRight {
  363. float: right;
  364. }
  365. .rightContent {
  366. width: 212px;
  367. height: 28px;
  368. margin-top: 13px;
  369. background: url("../../../../assets/imgs/title_right_bg.png");
  370. }
  371. }
  372. .clearfix::after {
  373. content: "";
  374. clear: both;
  375. height: 0;
  376. line-height: 0;
  377. visibility: hidden;
  378. display: block;
  379. }
  380. .clearfix {
  381. zoom: 1;
  382. }
  383. .monthMachine_top {
  384. display: flex;
  385. flex-direction: row;
  386. align-items: center;
  387. padding-top: 5px;
  388. padding-bottom: 5px;
  389. .station {
  390. display: flex;
  391. flex-direction: row;
  392. align-items: center;
  393. font-size: 14px;
  394. font-family: Microsoft YaHei;
  395. font-weight: 400;
  396. color: #b3b3b3;
  397. margin-right: 10px;
  398. margin-left: 10px;
  399. }
  400. .tabCut {
  401. display: inline-block;
  402. margin: 0 10px;
  403. div {
  404. display: inline-block;
  405. width: 60px;
  406. height: 27px;
  407. border: 1px solid #274934;
  408. text-align: center;
  409. line-height: 25px;
  410. cursor: pointer;
  411. }
  412. div:nth-child(1) {
  413. border-radius: 13px 0px 0px 13px;
  414. }
  415. div:nth-child(2) {
  416. border-radius: 0px 13px 13px 0px;
  417. }
  418. .active {
  419. background-color: rgba(5, 187, 76, 0.9);
  420. color: #fff;
  421. }
  422. }
  423. .search-input {
  424. margin-left: 10px;
  425. .el-input__inner {
  426. width: 175px;
  427. }
  428. .el-input__suffix {
  429. right: -50px;
  430. }
  431. }
  432. .but {
  433. display: flex;
  434. flex-direction: row;
  435. align-content: center;
  436. margin-left: 20px;
  437. .buttons {
  438. background-color: rgba(5, 187, 76, 0.2);
  439. border: 1px solid #3b6c53;
  440. color: #b3b3b3;
  441. font-size: 14px;
  442. &:hover,
  443. &.active {
  444. background-color: rgba(5, 187, 76, 0.5);
  445. color: #ffffff;
  446. }
  447. }
  448. }
  449. }
  450. .economicTable1 {
  451. height: calc(100% - 40px);
  452. .el-pagination {
  453. padding-top: 5px;
  454. display: flex;
  455. justify-content: flex-end;
  456. }
  457. }
  458. }
  459. </style>