index.vue 12 KB

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