index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  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. }
  284. },
  285. // isNumber(val) {
  286. // return typeof val === "number" && !isNaN(val);
  287. // },
  288. search() {
  289. switch (this.selectValue) {
  290. case "MTBF":
  291. mtbfList({
  292. companys: this.company,
  293. type: this.tabIndex,
  294. year: this.monthChange(this.searchYear),
  295. }).then(({ data: res }) => {
  296. if (res.data) {
  297. let arr = [
  298. {
  299. wpname: "",
  300. data: {
  301. wpname: "期次",
  302. current: "本期",
  303. sameperiod: "同期",
  304. },
  305. },
  306. ];
  307. this.tableData = [...arr, ...res.data];
  308. this.rowClick(res.data[res.data.length - 1]);
  309. }
  310. });
  311. break;
  312. case "MTTR":
  313. mttrList({
  314. companys: this.company,
  315. type: this.tabIndex,
  316. year: this.monthChange(this.searchYear),
  317. }).then(({ data: res }) => {
  318. if (res.data) {
  319. let arr = [
  320. {
  321. wpname: "",
  322. data: {
  323. wpname: "期次",
  324. current: "本期",
  325. sameperiod: "同期",
  326. },
  327. },
  328. ];
  329. this.tableData = [...arr, ...res.data];
  330. this.rowClick(res.data[res.data.length - 1]);
  331. }
  332. });
  333. break;
  334. }
  335. },
  336. monthChange(data) {
  337. let year = new Date(data).getFullYear().toString();
  338. return year;
  339. },
  340. getmonthValue() {
  341. let year = new Date().getFullYear().toString();
  342. return year;
  343. },
  344. tabClick(data) {
  345. this.tabIndex = data;
  346. if (data == -2) {
  347. this.company = "SXJ_KGDL_GFFD_ZGS";
  348. this.search();
  349. } else {
  350. this.company = this.companyOptions[0].id;
  351. this.search();
  352. }
  353. },
  354. initialization() {
  355. companys().then(({ data: res }) => {
  356. if (res.data) {
  357. this.companyOptions = res.data;
  358. this.company = res.data[0].id;
  359. this.search();
  360. }
  361. });
  362. },
  363. },
  364. mounted() {},
  365. beforeUnmount() {},
  366. };
  367. </script>
  368. <style lang="less" scoped>
  369. .parcel-box {
  370. padding: 0 20px;
  371. box-sizing: border-box;
  372. height: 100%;
  373. .search {
  374. display: flex;
  375. flex-direction: row;
  376. padding-top: 10px;
  377. padding-bottom: 10px;
  378. align-items: center;
  379. justify-content: space-between;
  380. .search-left {
  381. display: flex;
  382. flex-direction: row;
  383. align-items: center;
  384. }
  385. .search-right {
  386. position: relative;
  387. .select-back {
  388. position: absolute;
  389. right: 5px;
  390. top: 0px;
  391. z-index: 0;
  392. }
  393. .title-select {
  394. z-index: 2;
  395. }
  396. }
  397. .tabCut {
  398. display: inline-block;
  399. margin: 0 20px;
  400. div {
  401. display: inline-block;
  402. width: 60px;
  403. height: 27px;
  404. border: 1px solid #274934;
  405. text-align: center;
  406. line-height: 25px;
  407. cursor: pointer;
  408. }
  409. div:nth-child(1) {
  410. border-radius: 13px 0px 0px 13px;
  411. border-right-width: 0;
  412. }
  413. div:nth-child(2) {
  414. border-radius: 0px 13px 13px 0px;
  415. }
  416. .active {
  417. background-color: rgba(5, 187, 76, 0.9);
  418. color: #fff;
  419. }
  420. }
  421. button {
  422. margin-left: 10px;
  423. background: rgba(67, 81, 107, 0.3);
  424. border: 1px solid #274934;
  425. color: #b3b3b3;
  426. }
  427. .searchColor {
  428. background-color: rgba(5, 187, 76, 0.2);
  429. border: 1px solid #3b6c53;
  430. color: #b3b3b3;
  431. font-size: 14px;
  432. &:hover {
  433. background-color: rgba(5, 187, 76, 0.5);
  434. color: #ffffff;
  435. }
  436. }
  437. }
  438. .data-bodys {
  439. height: calc(100% - 58px - 350px - 20px);
  440. display: flex;
  441. flex-direction: column;
  442. background-color: rgba(0, 0, 0, 0.45);
  443. border-radius: 5px;
  444. }
  445. .economicTable {
  446. height: calc(100% - 32px);
  447. .el-table__body-wrapper {
  448. .columnFlex {
  449. display: flex;
  450. align-items: center;
  451. }
  452. .box-item {
  453. flex: 1;
  454. white-space: nowrap;
  455. overflow: hidden;
  456. text-overflow: ellipsis;
  457. }
  458. }
  459. .topSvg {
  460. width: 1em;
  461. height: 1em;
  462. color: #1c99ff;
  463. }
  464. .botSvg {
  465. width: 1em;
  466. height: 1em;
  467. color: #ff8300;
  468. }
  469. }
  470. .leftContent {
  471. width: 242px;
  472. height: 45px;
  473. line-height: 45px;
  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: #05bb4c;
  480. margin-left: 25px;
  481. }
  482. }
  483. .echarts {
  484. padding-top: 20px;
  485. padding-bottom: 15px;
  486. background-color: rgba(0, 0, 0, 0.45);
  487. border-radius: 5px;
  488. width: 100%;
  489. height: 350px;
  490. }
  491. }
  492. .el-table::before {
  493. height: 0;
  494. }
  495. .compare-lift-down {
  496. margin-left: 7px;
  497. font-size: 14px;
  498. font-family: Arial;
  499. font-weight: 400;
  500. color: #ff8300;
  501. }
  502. .compare-lift-up {
  503. margin-left: 7px;
  504. font-size: 14px;
  505. font-family: Arial;
  506. font-weight: 400;
  507. color: #1c99ff;
  508. }
  509. .chart-name {
  510. display: flex;
  511. align-items: center;
  512. justify-content: center;
  513. position: relative;
  514. width: 100%;
  515. height: 40px;
  516. border-bottom: 1px solid rgba(106, 106, 106, 0.5);
  517. font-size: 16px;
  518. font-family: Microsoft YaHei;
  519. font-weight: 400;
  520. color: #ffffff;
  521. }
  522. </style>