index.vue 16 KB

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