index.vue 13 KB

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