index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  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="search()"
  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. <div class="tabCut">
  20. <div
  21. @click="tabClick(val.id)"
  22. :class="tabIndex === val.id ? 'active' : ''"
  23. v-for="val in tabOptions"
  24. :key="val.id"
  25. >
  26. <span>{{ val.name }}</span>
  27. </div>
  28. </div>
  29. <div class="search-input">
  30. <el-date-picker
  31. size="mini"
  32. v-model="searchYear"
  33. type="year"
  34. value-format="YYYY"
  35. placeholder="选择年"
  36. popper-class="date-select"
  37. >
  38. </el-date-picker>
  39. </div>
  40. <el-button round size="mini" class="searchColor" @click="search"
  41. >搜索</el-button
  42. >
  43. </div>
  44. <div class="search-right">
  45. <img class="select-back" src="@assets/imgs/select-back.png" />
  46. <div class="title-select">
  47. <el-select
  48. v-model="selectValue"
  49. placeholder="请选择"
  50. @change="search()"
  51. clearable
  52. >
  53. <el-option
  54. v-for="item in selectList"
  55. :key="item.name"
  56. :label="item.name"
  57. :value="item.name"
  58. >
  59. </el-option>
  60. </el-select>
  61. </div>
  62. </div>
  63. <!-- <el-button round size="mini">导出</el-button> -->
  64. </div>
  65. <div class="data-bodys">
  66. <div class="line clearfix">
  67. <div class="leftContent left">
  68. <span>{{ selectValue + "分析" }}</span>
  69. </div>
  70. </div>
  71. <div class="economicTable">
  72. <el-table
  73. :data="tableData"
  74. style="width: 100%"
  75. size="mini"
  76. stripe
  77. height="100%"
  78. @row-click="rowClick"
  79. >
  80. <el-table-column
  81. align="center"
  82. prop=""
  83. label="场站"
  84. show-overflow-tooltip
  85. sortable
  86. >
  87. <template v-slot="scope">
  88. <span style="cursor: pointer">{{ scope.row.wpname }}</span>
  89. </template>
  90. </el-table-column>
  91. <el-table-column
  92. align="center"
  93. :label="val"
  94. v-for="(val, index) in tableHead"
  95. :key="index"
  96. width="139"
  97. sortable
  98. >
  99. <template v-slot="scope">
  100. <div v-if="scope.row.wpname == ''">
  101. <el-row>
  102. <el-col :span="12"
  103. ><span>{{ scope.row.data?.current }}</span></el-col
  104. >
  105. <el-col :span="12"
  106. ><span>{{ scope.row.data?.sameperiod }}</span></el-col
  107. >
  108. </el-row>
  109. </div>
  110. <div v-else>
  111. <el-row>
  112. <el-col :span="12" class="columnFlex">
  113. <div
  114. v-if="
  115. scope.row.targetList[index]?.current ||
  116. scope.row.targetList[index]?.current === 0
  117. "
  118. class="box-item"
  119. >
  120. <el-tooltip
  121. effect="dark"
  122. :content="scope.row.targetList[index]?.current"
  123. placement="top-start"
  124. >
  125. <div>
  126. <span style="width: 80%">{{
  127. scope.row.targetList &&
  128. scope.row.targetList[index]?.current.toFixed(1)
  129. }}</span>
  130. </div>
  131. </el-tooltip>
  132. </div>
  133. <div v-else class="box-item">--</div>
  134. <div style="flex: 0 0 auto; line-height: 1">
  135. <Bottom
  136. class="botSvg"
  137. v-if="
  138. scope.row.targetList &&
  139. scope.row.targetList[index]?.current <
  140. scope.row.targetList[index]?.sameperiod
  141. "
  142. />
  143. <Top
  144. class="topSvg"
  145. v-if="
  146. scope.row.targetList &&
  147. scope.row.targetList[index]?.current >
  148. scope.row.targetList[index]?.sameperiod
  149. "
  150. />
  151. </div>
  152. </el-col>
  153. <el-col :span="12">
  154. <div
  155. v-if="
  156. scope.row.targetList[index]?.sameperiod ||
  157. scope.row.targetList[index]?.sameperiod === 0
  158. "
  159. >
  160. <el-tooltip
  161. effect="dark"
  162. :content="scope.row.targetList[index]?.sameperiod"
  163. placement="top-start"
  164. >
  165. <div>
  166. <span style="width: 80%">{{
  167. scope.row.targetList &&
  168. scope.row.targetList[index]?.sameperiod.toFixed(1)
  169. }}</span>
  170. </div>
  171. </el-tooltip>
  172. </div>
  173. <div v-else>--</div>
  174. </el-col>
  175. </el-row>
  176. </div>
  177. </template>
  178. </el-table-column>
  179. </el-table>
  180. </div>
  181. </div>
  182. <div class="echarts">
  183. <div style="height: 100%; margin-top: 10px">
  184. <BarCharts
  185. :list="barList"
  186. width="97%"
  187. height="100%"
  188. :top="60"
  189. :pillarName="pillarName"
  190. :xdate="false"
  191. :showLegend="true"
  192. :units="['', '']"
  193. ></BarCharts>
  194. </div>
  195. </div>
  196. </div>
  197. </template>
  198. <script>
  199. // import Panel from "@/components/curveAnalyse/panel.vue";
  200. // import ChartColumnar from '@/components/curveAnalyse/multiple-bar-chart.vue'
  201. import BarCharts from "@/views/economicsOperation/thematicAnalysis/components/barCharts.vue";
  202. import {
  203. companys,
  204. fdlList,
  205. zhcydlList,
  206. gwdlList,
  207. swdlList,
  208. } from "@/api/curveAnalyse";
  209. export default {
  210. name: "curveAnalyse",
  211. components: {
  212. // ChartColumnar,
  213. // Panel,
  214. BarCharts,
  215. },
  216. data() {
  217. return {
  218. pillarName: "",
  219. // echartsData: [],
  220. // tableName: "",
  221. list: [],
  222. // DayPower: {
  223. // // 图表所用单位
  224. // units: [""],
  225. // value: [
  226. // {
  227. // title: "",
  228. // yAxisIndex: 0, // 使用单位
  229. // value: [],
  230. // },
  231. // ],
  232. // },
  233. // BarChartsList: [],
  234. tabIndex: -1,
  235. tabOptions: [
  236. { id: -1, name: "风电" },
  237. { id: -2, name: "光伏" },
  238. ],
  239. // barHeight: '260px',
  240. barList: [],
  241. tableData: [],
  242. tableHead: [
  243. "一月",
  244. "二月",
  245. "三月",
  246. "四月",
  247. "五月",
  248. "六月",
  249. "七月",
  250. "八月",
  251. "九月",
  252. "十月",
  253. "十一月",
  254. "十二月",
  255. ],
  256. company: "",
  257. companyOptions: [],
  258. searchYear: this.getmonthValue(),
  259. selectList: [
  260. {
  261. name: "发电量",
  262. },
  263. {
  264. name: "上网电量",
  265. },
  266. {
  267. name: "购网电量",
  268. },
  269. {
  270. name: "综合场用电量",
  271. },
  272. ],
  273. selectValue: "发电量",
  274. };
  275. },
  276. watch: {},
  277. filters: {},
  278. computed: {},
  279. created() {
  280. this.initialization();
  281. },
  282. methods: {
  283. compare(property) {
  284. return (a, b) => {
  285. let val1 = a[property];
  286. let val2 = b[property];
  287. return val1 - val2;
  288. };
  289. },
  290. rowClick(list) {
  291. if (list?.wpname) {
  292. let barList = [
  293. {
  294. name: "本期",
  295. children: [],
  296. date: [],
  297. },
  298. {
  299. name: "同期",
  300. children: [],
  301. },
  302. ];
  303. this.pillarName = list.wpname;
  304. list.targetList.forEach((item) => {
  305. barList[0].date.push(item.month + "月");
  306. barList[0].children.push(item.current || 0);
  307. barList[1].children.push(item.sameperiod || 0);
  308. });
  309. this.barList = barList;
  310. }
  311. },
  312. isNumber(val) {
  313. return typeof val === "number" && !isNaN(val);
  314. },
  315. search() {
  316. switch (this.selectValue) {
  317. case "发电量":
  318. fdlList({
  319. companys: this.company,
  320. type: this.tabIndex,
  321. year: this.monthChange(this.searchYear),
  322. }).then(({ data: res }) => {
  323. if (res.data) {
  324. let arr = [
  325. {
  326. wpname: "",
  327. data: {
  328. wpname: "期次",
  329. current: "本期",
  330. sameperiod: "同期",
  331. },
  332. },
  333. ];
  334. this.tableData = [...arr, ...res.data];
  335. this.rowClick(res.data[res.data.length - 1]);
  336. }
  337. });
  338. break;
  339. case "综合场用电量":
  340. zhcydlList({
  341. companys: this.company,
  342. type: this.tabIndex,
  343. year: this.monthChange(this.searchYear),
  344. }).then(({ data: res }) => {
  345. if (res.data) {
  346. let arr = [
  347. {
  348. wpname: "",
  349. data: {
  350. wpname: "期次",
  351. current: "本期",
  352. sameperiod: "同期",
  353. },
  354. },
  355. ];
  356. this.tableData = [...arr, ...res.data];
  357. this.rowClick(res.data[res.data.length - 1]);
  358. }
  359. });
  360. break;
  361. case "上网电量":
  362. swdlList({
  363. companys: this.company,
  364. type: this.tabIndex,
  365. year: this.monthChange(this.searchYear),
  366. }).then(({ data: res }) => {
  367. if (res.data) {
  368. let arr = [
  369. {
  370. wpname: "",
  371. data: {
  372. wpname: "期次",
  373. current: "本期",
  374. sameperiod: "同期",
  375. },
  376. },
  377. ];
  378. this.tableData = [...arr, ...res.data];
  379. this.rowClick(res.data[res.data.length - 1]);
  380. }
  381. });
  382. break;
  383. case "购网电量":
  384. gwdlList({
  385. companys: this.company,
  386. type: this.tabIndex,
  387. year: this.monthChange(this.searchYear),
  388. }).then(({ data: res }) => {
  389. if (res.data) {
  390. let arr = [
  391. {
  392. wpname: "",
  393. data: {
  394. wpname: "期次",
  395. current: "本期",
  396. sameperiod: "同期",
  397. },
  398. },
  399. ];
  400. this.tableData = [...arr, ...res.data];
  401. this.rowClick(res.data[res.data.length - 1]);
  402. }
  403. });
  404. break;
  405. }
  406. },
  407. monthChange(data) {
  408. let year = new Date(data).getFullYear().toString();
  409. return year;
  410. },
  411. getmonthValue() {
  412. let year = new Date().getFullYear().toString();
  413. return year;
  414. },
  415. tabClick(data) {
  416. this.tabIndex = data;
  417. if (data == -2) {
  418. this.company = "SXJ_KGDL_GFFD_ZGS";
  419. this.search();
  420. } else {
  421. this.company = this.companyOptions[0].id;
  422. this.search();
  423. }
  424. },
  425. initialization() {
  426. companys().then(({ data: res }) => {
  427. if (res.data) {
  428. this.companyOptions = res.data;
  429. this.company = res.data[0].id;
  430. this.search();
  431. }
  432. });
  433. },
  434. },
  435. mounted() {},
  436. beforeUnmount() {},
  437. };
  438. </script>
  439. <style lang="less" scoped>
  440. .parcel-box {
  441. padding: 0 20px;
  442. box-sizing: border-box;
  443. height: 100%;
  444. .data-bodys {
  445. display: flex;
  446. flex-direction: column;
  447. background-color: rgba(0, 0, 0, 0.45);
  448. border-radius: 5px;
  449. height: calc(100% - 58px - 350px - 20px);
  450. }
  451. .economicTable {
  452. height: calc(100% - 32px);
  453. .el-table__body-wrapper {
  454. .columnFlex {
  455. display: flex;
  456. align-items: center;
  457. }
  458. .box-item {
  459. flex: 1;
  460. white-space: nowrap;
  461. overflow: hidden;
  462. text-overflow: ellipsis;
  463. }
  464. }
  465. .topSvg {
  466. width: 1em;
  467. height: 1em;
  468. color: #1c99ff;
  469. }
  470. .botSvg {
  471. width: 1em;
  472. height: 1em;
  473. color: #ff8300;
  474. }
  475. }
  476. .el-col + .el-col {
  477. padding-left: 0 !important;
  478. }
  479. .el-table::v-deep {
  480. // .el-table__header-wrapper {
  481. // th {
  482. // height: 35px !important;
  483. // line-height: 35px !important;
  484. // }
  485. // }
  486. td {
  487. height: 34px !important;
  488. line-height: 34px !important;
  489. }
  490. }
  491. .line {
  492. .leftContent {
  493. width: 242px;
  494. height: 41px;
  495. line-height: 41px;
  496. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  497. span {
  498. font-size: 16px;
  499. font-family: Microsoft YaHei;
  500. font-weight: 400;
  501. color: #ffffff;
  502. margin-left: 25px;
  503. }
  504. }
  505. }
  506. .search {
  507. display: flex;
  508. flex-direction: row;
  509. padding-top: 10px;
  510. padding-bottom: 10px;
  511. align-items: center;
  512. justify-content: space-between;
  513. .search-left {
  514. display: flex;
  515. flex-direction: row;
  516. align-items: center;
  517. }
  518. .search-right {
  519. position: relative;
  520. .select-back {
  521. position: absolute;
  522. right: 5px;
  523. top: 0px;
  524. z-index: 0;
  525. }
  526. .title-select {
  527. z-index: 2;
  528. }
  529. }
  530. .tabCut {
  531. display: inline-block;
  532. margin: 0 20px;
  533. div {
  534. display: inline-block;
  535. width: 60px;
  536. height: 27px;
  537. border: 1px solid #274934;
  538. text-align: center;
  539. line-height: 25px;
  540. cursor: pointer;
  541. }
  542. div:nth-child(1) {
  543. border-radius: 13px 0px 0px 13px;
  544. border-right-width: 0;
  545. }
  546. div:nth-child(2) {
  547. border-radius: 0px 13px 13px 0px;
  548. }
  549. .active {
  550. background-color: rgba(5, 187, 76, 0.9);
  551. color: #fff;
  552. }
  553. }
  554. button {
  555. margin-left: 10px;
  556. background: rgba(67, 81, 107, 0.3);
  557. border: 1px solid #274934;
  558. color: #b3b3b3;
  559. }
  560. .searchColor {
  561. background-color: rgba(5, 187, 76, 0.2);
  562. border: 1px solid #3b6c53;
  563. color: #b3b3b3;
  564. font-size: 14px;
  565. &:hover {
  566. background-color: rgba(5, 187, 76, 0.5);
  567. color: #ffffff;
  568. }
  569. }
  570. }
  571. .echarts {
  572. margin-top: 20px;
  573. background-color: rgba(0, 0, 0, 0.45);
  574. border-radius: 5px;
  575. width: 100%;
  576. height: 350px;
  577. }
  578. }
  579. .clearfix::after {
  580. content: "";
  581. clear: both;
  582. height: 0;
  583. line-height: 0;
  584. visibility: hidden;
  585. display: block;
  586. }
  587. .clearfix {
  588. zoom: 1;
  589. }
  590. .left {
  591. float: left;
  592. }
  593. .right {
  594. float: right;
  595. }
  596. .el-table::before {
  597. height: 0;
  598. }
  599. .compare-lift-down {
  600. margin-left: 7px;
  601. font-size: 14px;
  602. font-family: Arial;
  603. font-weight: 400;
  604. color: #ff8300;
  605. }
  606. .compare-lift-up {
  607. margin-left: 7px;
  608. font-size: 14px;
  609. font-family: Arial;
  610. font-weight: 400;
  611. color: #1c99ff;
  612. }
  613. .chart-name {
  614. display: flex;
  615. align-items: center;
  616. justify-content: center;
  617. position: relative;
  618. width: 100%;
  619. height: 40px;
  620. border-bottom: 1px solid rgba(106, 106, 106, 0.5);
  621. font-size: 16px;
  622. font-family: Microsoft YaHei;
  623. font-weight: 400;
  624. color: #ffffff;
  625. }
  626. .point {
  627. width: 6px;
  628. height: 1px;
  629. background-color: #ffffff;
  630. position: absolute;
  631. &.point-left {
  632. left: 0;
  633. }
  634. &.point-right {
  635. right: 0;
  636. }
  637. &.top {
  638. top: -1px;
  639. }
  640. &.bottom {
  641. bottom: -1px;
  642. }
  643. }
  644. </style>