index.vue 12 KB

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