index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  1. <template>
  2. <div class="parcel-box">
  3. <div class="search">
  4. <el-select size="mini" v-model="company" placeholder="请选择">
  5. <el-option
  6. v-for="item in companyOptions"
  7. :key="item.id"
  8. :label="item.aname"
  9. :value="item.id"
  10. >
  11. </el-option>
  12. </el-select>
  13. <div class="tabCut">
  14. <div
  15. @click="tabClick(val.id)"
  16. :class="tabIndex === val.id ? 'active' : ''"
  17. v-for="val in tabOptions"
  18. :key="val.id"
  19. >
  20. <span>{{ val.name }}</span>
  21. </div>
  22. </div>
  23. <div class="search-input">
  24. <el-date-picker
  25. v-model="searchYear"
  26. type="year"
  27. value-format="YYYY"
  28. placeholder="选择年"
  29. popper-class="date-select"
  30. >
  31. </el-date-picker>
  32. </div>
  33. <el-button round size="mini" class="searchColor" @click="search"
  34. >搜索</el-button
  35. >
  36. <!-- <el-button round size="mini">导出</el-button> -->
  37. </div>
  38. <div class="data-bodys">
  39. <div class="line clearfix">
  40. <div class="leftContent left"><span>性能损失率</span></div>
  41. </div>
  42. <div class="economicTable">
  43. <el-table
  44. :data="tableData"
  45. style="width: 100%"
  46. size="mini"
  47. stripe
  48. height="50vh"
  49. @row-click="rowClick"
  50. >
  51. <el-table-column
  52. align="center"
  53. prop=""
  54. label="风场"
  55. width="165"
  56. sortable
  57. >
  58. <template v-slot="scope">
  59. <span style="cursor: pointer">{{ scope.row.wpname }}</span>
  60. </template>
  61. </el-table-column>
  62. <el-table-column
  63. align="center"
  64. :label="val"
  65. v-for="(val, index) in tableHead"
  66. :key="index"
  67. width="142"
  68. sortable
  69. >
  70. <template v-slot="scope">
  71. <div v-if="scope.row.wpname == ''">
  72. <el-row>
  73. <el-col :span="12"
  74. ><span>{{ scope.row.data?.current }}</span></el-col
  75. >
  76. <el-col :span="12"
  77. ><span>{{ scope.row.data.sameperiod }}</span></el-col
  78. >
  79. </el-row>
  80. </div>
  81. <div v-else>
  82. <el-row>
  83. <el-col :span="12" style="position: relative">
  84. <div
  85. style="
  86. padding: 0 10px;
  87. width: 100%;
  88. height: 100%;
  89. display: flex;
  90. flex-direction: row;
  91. align-items: center;
  92. justify-content: center;
  93. "
  94. >
  95. <span style="width: 40px">{{
  96. scope.row.targetList &&
  97. (scope.row.targetList[index]?.current ||
  98. scope.row.targetList[index]?.current === 0
  99. ? scope.row.targetList[index]?.current
  100. : "--")
  101. }}</span>
  102. <i
  103. style="position: absolute; right: 0"
  104. v-if="
  105. scope.row.targetList &&
  106. (scope.row.targetList[index]?.compare > 0 ||
  107. scope.row.targetList[index]?.compare === 0)
  108. "
  109. class="active_icon icon-arrow-up compare-lift-up"
  110. ></i>
  111. <i
  112. style="position: absolute; right: 0"
  113. v-if="
  114. scope.row.targetList &&
  115. scope.row.targetList[index]?.compare < 0
  116. "
  117. class="active_icon icon-arrow-dpwn compare-lift-down"
  118. ></i>
  119. </div>
  120. </el-col>
  121. <el-col :span="12"
  122. ><span>{{
  123. scope.row.targetList &&
  124. (scope.row.targetList[index]?.sameperiod ||
  125. scope.row.targetList[index]?.sameperiod === 0
  126. ? scope.row.targetList[index]?.sameperiod
  127. : "--")
  128. }}</span></el-col
  129. >
  130. </el-row>
  131. </div>
  132. </template>
  133. </el-table-column>
  134. </el-table>
  135. </div>
  136. </div>
  137. <div class="echarts" style="height: 30vh">
  138. <div class="chart-name">
  139. <div class="point point-left bottom"></div>
  140. <div class="point point-right bottom"></div>
  141. 性能损失率
  142. </div>
  143. <div>
  144. <BarCharts
  145. :list="barList"
  146. width="100%"
  147. height="32vh"
  148. :top="60"
  149. :pillarName="pillarName"
  150. :xdate="false"
  151. :showLegend="true"
  152. :units="['', '']"
  153. ></BarCharts>
  154. </div>
  155. </div>
  156. </div>
  157. </template>
  158. <script>
  159. import Panel from "@/components/curveAnalyse/panel.vue";
  160. import ChartColumnar from "@/components/curveAnalyse/multiple-bar-chart.vue";
  161. import BarCharts from "@/views/economicsOperation/thematicAnalysis/components/barCharts.vue";
  162. import { companys, xnsslList } from "@/api/curveAnalyse";
  163. export default {
  164. name: "curveAnalyse",
  165. components: {
  166. ChartColumnar,
  167. Panel,
  168. BarCharts,
  169. },
  170. data() {
  171. return {
  172. pillarName: "",
  173. echartsData: [],
  174. tableName: "",
  175. list: [],
  176. DayPower: {
  177. // 图表所用单位
  178. units: [""],
  179. value: [
  180. {
  181. title: "",
  182. yAxisIndex: 0, // 使用单位
  183. value: [],
  184. },
  185. ],
  186. },
  187. BarChartsList: [],
  188. tabIndex: -1,
  189. tabOptions: [
  190. { id: -1, name: "风电" },
  191. { id: -2, name: "光伏" },
  192. ],
  193. barHeight: "260px",
  194. barList: [],
  195. tableData: [],
  196. tableHead: [
  197. "一月",
  198. "二月",
  199. "三月",
  200. "四月",
  201. "五月",
  202. "六月",
  203. "七月",
  204. "八月",
  205. "九月",
  206. "十月",
  207. "十一月",
  208. "十二月",
  209. ],
  210. company: "",
  211. companyOptions: [],
  212. searchYear: this.getmonthValue(),
  213. };
  214. },
  215. watch: {},
  216. filters: {},
  217. computed: {},
  218. created() {
  219. this.initialization();
  220. },
  221. methods: {
  222. compare(property) {
  223. return (a, b) => {
  224. let val1 = a[property];
  225. let val2 = b[property];
  226. return val1 - val2;
  227. };
  228. },
  229. rowClick(list) {
  230. if (list?.wpname) {
  231. let barList = [
  232. {
  233. name: "本期",
  234. children: [],
  235. date: [],
  236. },
  237. {
  238. name: "同期",
  239. children: [],
  240. },
  241. ];
  242. this.pillarName = list.wpname;
  243. list.targetList.forEach((item) => {
  244. barList[0].date.push(item.month + "月");
  245. barList[0].children.push(item.current || 0);
  246. barList[1].children.push(item.compare || 0);
  247. });
  248. }
  249. },
  250. isNumber(val) {
  251. return typeof val === "number" && !isNaN(val);
  252. },
  253. search() {
  254. xnsslList({
  255. companys: this.company,
  256. type: this.tabIndex,
  257. year: this.monthChange(this.searchYear),
  258. }).then(({ data: res }) => {
  259. if (res.data) {
  260. let arr = [
  261. {
  262. wpname: "",
  263. data: {
  264. wpname: "期次",
  265. current: "本期",
  266. sameperiod: "同期",
  267. },
  268. },
  269. ];
  270. this.tableData = [...arr, ...res.data];
  271. this.rowClick(res.data[res.data.length - 1]);
  272. }
  273. });
  274. },
  275. monthChange(data) {
  276. let year = new Date(data).getFullYear().toString();
  277. return year;
  278. },
  279. getmonthValue() {
  280. let year = new Date().getFullYear().toString();
  281. return year;
  282. },
  283. tabClick(data) {
  284. this.tabIndex = data;
  285. this.search();
  286. },
  287. initialization() {
  288. companys().then(({ data: res }) => {
  289. if (res.data) {
  290. this.companyOptions = res.data;
  291. this.company = res.data[0].id;
  292. this.search();
  293. }
  294. });
  295. },
  296. },
  297. mounted() {},
  298. beforeUnmount() {},
  299. };
  300. </script>
  301. <style lang="less" scoped>
  302. .data-bodys {
  303. display: flex;
  304. flex-direction: column;
  305. background-color: rgba(0, 0, 0, 0.45);
  306. border-radius: 5px;
  307. padding: 5px;
  308. }
  309. .parcel-box {
  310. padding: 0 20px;
  311. box-sizing: border-box;
  312. .tableDataBox {
  313. }
  314. .line {
  315. padding-bottom: 5px;
  316. .leftContent {
  317. width: 242px;
  318. height: 41px;
  319. line-height: 41px;
  320. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  321. span {
  322. font-size: 16px;
  323. font-family: Microsoft YaHei;
  324. font-weight: 400;
  325. color: #ffffff;
  326. margin-left: 25px;
  327. }
  328. }
  329. .rightContent {
  330. width: 212px;
  331. height: 28px;
  332. margin-top: 13px;
  333. background: url("../../../../assets/imgs/title_right_bg.png");
  334. }
  335. }
  336. .search {
  337. display: flex;
  338. padding-top: 10px;
  339. align-items: center;
  340. .tabCut {
  341. display: inline-block;
  342. margin: 0 20px;
  343. div {
  344. display: inline-block;
  345. width: 60px;
  346. height: 27px;
  347. border: 1px solid #274934;
  348. text-align: center;
  349. line-height: 25px;
  350. cursor: pointer;
  351. }
  352. div:nth-child(1) {
  353. border-radius: 13px 0px 0px 13px;
  354. }
  355. div:nth-child(2) {
  356. border-radius: 0px 13px 13px 0px;
  357. }
  358. .active {
  359. background-color: rgba(5, 187, 76, 0.9);
  360. color: #fff;
  361. }
  362. }
  363. button {
  364. margin-left: 10px;
  365. background: rgba(67, 81, 107, 0.3);
  366. border: 1px solid #274934;
  367. color: #b3b3b3;
  368. }
  369. .searchColor {
  370. background-color: rgba(5, 187, 76, 0.2);
  371. border: 1px solid #3b6c53;
  372. color: #b3b3b3;
  373. font-size: 14px;
  374. &:hover {
  375. background-color: rgba(5, 187, 76, 0.5);
  376. color: #ffffff;
  377. }
  378. }
  379. }
  380. .echarts {
  381. margin-top: 20px;
  382. background-color: rgba(0, 0, 0, 0.45);
  383. border-radius: 5px;
  384. width: 100%;
  385. }
  386. }
  387. .clearfix::after {
  388. content: "";
  389. clear: both;
  390. height: 0;
  391. line-height: 0;
  392. visibility: hidden;
  393. display: block;
  394. }
  395. .clearfix {
  396. zoom: 1;
  397. }
  398. .left {
  399. float: left;
  400. }
  401. .right {
  402. float: right;
  403. }
  404. /deep/ .el-input__prefix {
  405. right: -15px;
  406. left: unset;
  407. }
  408. /deep/ .el-input--prefix .el-input__inner {
  409. padding-left: 20px;
  410. }
  411. .el-table::before {
  412. height: 0;
  413. }
  414. .compare-lift-down {
  415. margin-left: 7px;
  416. font-size: 14px;
  417. font-family: Arial;
  418. font-weight: 400;
  419. color: #ff8300;
  420. }
  421. .compare-lift-up {
  422. margin-left: 7px;
  423. font-size: 14px;
  424. font-family: Arial;
  425. font-weight: 400;
  426. color: #1c99ff;
  427. }
  428. .chart-name {
  429. display: flex;
  430. align-items: center;
  431. justify-content: center;
  432. position: relative;
  433. width: 100%;
  434. height: 40px;
  435. border-bottom: 1px solid rgba(106, 106, 106, 0.5);
  436. font-size: 16px;
  437. font-family: Microsoft YaHei;
  438. font-weight: 400;
  439. color: #ffffff;
  440. }
  441. .point {
  442. width: 6px;
  443. height: 1px;
  444. background-color: #ffffff;
  445. position: absolute;
  446. &.left {
  447. left: 0;
  448. }
  449. &.right {
  450. top: 0;
  451. right: 0;
  452. }
  453. &.top {
  454. top: -1px;
  455. }
  456. &.bottom {
  457. bottom: -1px;
  458. }
  459. }
  460. </style>