index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. <template>
  2. <div style="width: 100%;height:100%;padding: 10px;">
  3. <div class="operationHome" v-if="$route.path === '/economicsOperation'">
  4. <!-- <tab @select="selectionItemClick" /> -->
  5. <div class="homeMain">
  6. <div class="homeLeaf">
  7. <Row type="flex" class="plan" style="height:21%">
  8. <Col :span="24">
  9. <com-panel title="发电量" sub-title="(单位:万kWh)" bodyPadd="50px"
  10. style="position: relative;height: 100%">
  11. <div v-for="it in ForecastPower" :key="it" class="powerName">
  12. <span :style="{top: it.top}">{{it.name}}</span>
  13. <span :style="{top: it.top1}">{{it.value}}</span>
  14. <span :style="{top: it.top2}">{{it.bfb}}%</span>
  15. <span :style="{top: it.top3}">理论发电量 {{it.total}}</span>
  16. </div>
  17. <list-bar-chart-2 :list="ForecastPower" height="15vh" />
  18. </com-panel>
  19. </Col>
  20. </Row>
  21. <Row type="flex" class="plan" style="height:79%">
  22. <Col :span="24">
  23. <com-panel title="主要经济指标同期对比" sub-title="(电量单位:万kWh)" style="position: relative;height: 100%">
  24. <operationTable :data="zbtqdb" height="100%"></operationTable>
  25. </com-panel>
  26. </Col>
  27. </Row>
  28. </div>
  29. <div class="homeCenter">
  30. <Row type="flex" style="height:23%;">
  31. <Col :span="24" style="background: #142446 !important;">
  32. <power-plan :data="planData" :title="planBtnName" />
  33. </Col>
  34. </Row>
  35. <Row type="flex" style="height:25%">
  36. <Col :span="24">
  37. <com-panel title="限电" style="position: relative;height: 100%">
  38. <multiple-y-line-chart-normal height="100%" :list="Powertrend" :yAxises="PowertrendYAxises"
  39. :showLegend="true" :hoverType="'axis'" />
  40. </com-panel>
  41. </Col>
  42. </Row>
  43. <Row type="flex" style="height:25%">
  44. <Col :span="24">
  45. <com-panel title="损失电量" style="position: relative;height: 100%">
  46. <multiple-y-line-chart-normal height="100%" :list="Powerloss" :yAxises="PowerlossYAxises"
  47. :showLegend="true" :hoverType="'axis'" />
  48. </com-panel>
  49. </Col>
  50. </Row>
  51. <Row type="flex" style="height:26%">
  52. <Col :span="24">
  53. <com-panel title="发电量" style="position: relative;height: 100%">
  54. <!-- <marker-line-chart :height="'100%'" :list="Powersend" myUnit='MW' :showLegend="true" /> -->
  55. <multiple-bar-chart :list="Powersend" :units="['电量(万kwh)']" height="100%"
  56. :showLegend="true" />
  57. </com-panel>
  58. </Col>
  59. </Row>
  60. </div>
  61. <div class="homeRight">
  62. <div class="tabs">
  63. <!-- @click="selectTab(index, item)" -->
  64. <div class="tab-item" v-for="(item, index) of tabData" :key="item"
  65. :class="{ active: activeIndex == index }">
  66. {{ item.text }}
  67. </div>
  68. </div>
  69. <Row type="flex" class="rightplan" v-for="it in rightTableData" :key="it.name" style="height:48.5%">
  70. <Col :span="24">
  71. <com-panel :title="it.name" sub-title="(电量单位:万kWh)" style="position: relative;height: 100%">
  72. <operationTable :data="it.data" height="100%"></operationTable>
  73. </com-panel>
  74. </Col>
  75. </Row>
  76. </div>
  77. </div>
  78. </div>
  79. <router-view v-else />
  80. </div>
  81. </template>
  82. <script>
  83. import {
  84. generatingcapacity,
  85. homeright,
  86. homemiddle
  87. } from "@/api/economicIndex";
  88. import Row from "@com/coms/grid/row.vue";
  89. import Col from "@com/coms/grid/col.vue";
  90. import ComPanel from "@com/coms/panel/panel";
  91. import ListBarChart2 from "@com/chart/bar/list-bar-chart2.vue";
  92. import forecastBarComponent from "./component/forecastBarComponent.vue";
  93. import Tab from "@com/coms/tabs/tab.vue";
  94. import operationTable from "./component/operationTable.vue";
  95. import PowerPlan from "./component/power-plan.vue";
  96. import dataJson from "./component/dataJJJson.json"
  97. import MultipleYLineChartNormal from "./component/multiple-y-line-chart-normal.vue";
  98. import MultipleBarChart from "./component/multiple-bar-chart.vue";
  99. export default {
  100. name: "economicsOperation",
  101. components: {
  102. Row,
  103. Col,
  104. ComPanel,
  105. ListBarChart2,
  106. Tab,
  107. forecastBarComponent,
  108. operationTable,
  109. PowerPlan,
  110. MultipleYLineChartNormal,
  111. MultipleBarChart
  112. },
  113. data() {
  114. return {
  115. activeIndex: 0,
  116. tabData: [{
  117. id: "year",
  118. text: "年",
  119. }, {
  120. id: "month",
  121. text: "月",
  122. }, {
  123. id: "week",
  124. text: "周",
  125. }, ],
  126. rightTableData: [],
  127. ForecastPower: [],
  128. fnlyl: dataJson.data.fnlyl,
  129. zbtqdb: dataJson.data.zbtqdb,
  130. sbklyl: {},
  131. lgxzkh: {},
  132. planData: dataJson.data.planData,
  133. planBtnName: "全部",
  134. Powertrend: dataJson.data.Powertrend,
  135. PowertrendYAxises: [{
  136. name: "限电量",
  137. min: 0,
  138. max: null,
  139. unit: "(万kWh)",
  140. position: "left",
  141. },
  142. {
  143. name: "限电率",
  144. min: 0,
  145. max: 10,
  146. unit: "(%)",
  147. position: "right",
  148. },
  149. ],
  150. Powerloss: dataJson.data.Powerloss,
  151. PowerlossYAxises: [{
  152. name: "损失电量",
  153. min: 0,
  154. max: null,
  155. unit: "(万kWh)",
  156. position: "left",
  157. },
  158. {
  159. name: "限电率",
  160. min: 0,
  161. max: 10,
  162. unit: "(%)",
  163. position: "right",
  164. },
  165. ],
  166. Powersend: dataJson.data.Powersend,
  167. }
  168. },
  169. mounted() {
  170. this.getGeneratingcapacity()
  171. },
  172. methods: {
  173. selectTab(index, item) {
  174. this.activeIndex = index;
  175. },
  176. //获取发电量和主要经济指标同期对比
  177. getGeneratingcapacity() {
  178. let that = this
  179. generatingcapacity().then(res => {
  180. if (res.data) {
  181. if (res.data.fdl?.length>0) {
  182. res.data.fdl.forEach(it => {
  183. dataJson.data.fdl.forEach(iv =>{
  184. if (it.name === iv.name) {
  185. iv.bfb = it.bfb === 0 ? 1 : it.bfb
  186. iv.total = it.total === 0 ? 1 : it.total
  187. iv.value = it.value === 0 ? 0 : it.value
  188. }
  189. })
  190. })
  191. that.ForecastPower = dataJson.data.fdl
  192. }
  193. that.zbtqdb = res.data.zbtqdb
  194. }
  195. })
  196. homeright().then(res =>{
  197. if (res.data) {
  198. that.rightTableData = [{
  199. name: '风能利用率年排名',
  200. data: res.data.fnlyl
  201. },
  202. {
  203. name: '设备可利用率年排名',
  204. data: res.data.sbklyl
  205. },
  206. // {
  207. // name: '两个细则考核',
  208. // data: res.data.lgxzkh
  209. // },
  210. ]
  211. }
  212. })
  213. homemiddle().then(res =>{
  214. if (res.data) {
  215. that.planData = res.data.planData
  216. that.Powertrend = res.data.Powertrend
  217. that.Powersend = res.data.Powersend
  218. that.Powerloss = res.data.Powerloss
  219. }
  220. })
  221. },
  222. }
  223. };
  224. </script>
  225. <style lang="less">
  226. .operationHome {
  227. width: 100%;
  228. height: 100%;
  229. .tabs {
  230. display: flex;
  231. color: #fff;
  232. margin-bottom: 1.111vh;
  233. font-size: 12px;
  234. display: flex;
  235. justify-content: end;
  236. .tab-item {
  237. padding: 0.37vh 1.852vh;
  238. cursor: no-drop;
  239. &.active {
  240. color: #fff;
  241. position: relative;
  242. background-image: linear-gradient(to top, fade(#2169c3, 50%), fade(#2169c3, 0));
  243. &::after {
  244. content: "";
  245. position: absolute;
  246. width: 100%;
  247. height: 0.463vh;
  248. border: 0.093vh solid #2169c3;
  249. border-top: 0;
  250. left: 0;
  251. bottom: 0;
  252. box-sizing: border-box;
  253. }
  254. }
  255. }
  256. }
  257. .homeMain {
  258. width: 100%;
  259. height: calc(100% - 25px);
  260. display: flex;
  261. justify-content: space-between;
  262. .homeLeaf {
  263. width: 25%;
  264. height: 100%;
  265. .powerName {
  266. span {
  267. position: absolute;
  268. &:nth-child(1) {
  269. font-size: 12px;
  270. left: 30px;
  271. }
  272. &:nth-child(2) {
  273. font-size: 16px;
  274. left: 85px;
  275. }
  276. &:nth-child(3) {
  277. font-size: 12px;
  278. right: 10px;
  279. }
  280. &:nth-child(4) {
  281. font-size: 12px;
  282. right: 50px;
  283. }
  284. }
  285. }
  286. }
  287. .homeCenter {
  288. width: 48%;
  289. height: 100%;
  290. }
  291. .homeRight {
  292. width: 25%;
  293. height: 100%;
  294. .rightplan {
  295. margin-bottom: 15px;
  296. }
  297. }
  298. }
  299. }
  300. </style>