index.vue 16 KB

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