1
0

index.vue 15 KB

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