index.vue 14 KB

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