index.vue 15 KB

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