verticalScreen.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <template>
  2. <div class="verticalWrap">
  3. <div class="pageHead">
  4. <pageHead />
  5. </div>
  6. <div style="display:none">
  7. <NowData screenType="ver" />
  8. <AirSwitchVer />
  9. <TemChart screenType="ver" />
  10. <LastMonthData screenType="ver" />
  11. </div>
  12. <div>
  13. <div class="lastTotalEnergy verticalClass">
  14. <div class="head-title">
  15. <span>上月总能耗</span>
  16. </div>
  17. <div class="subhead-title">低能耗亲自然</div>
  18. <div class="bottomCont">
  19. <img src="@/assets/circleEnergy.png" />
  20. <div class="showData">
  21. <div class="title">比基准能耗</div>
  22. <div class="energySave">
  23. 节能<span>{{ lastAllEnergy.energyCompare }}%</span>
  24. </div>
  25. <div class="totalEnergy">
  26. 总能耗<span>{{ lastAllEnergy.energyTotal }}</span
  27. >KWh
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. <lastSaveEnergy screenType="ver" />
  33. <lastEnergyChart />
  34. </div>
  35. <FloorSpace style="display:none" />
  36. </div>
  37. </template>
  38. <script>
  39. import NowData from "./valueDelivery/NowData.vue";
  40. import LastMonthData from "./valueDelivery/LastMonthData.vue";
  41. import AirSwitchVer from "./valueDelivery/AirSwitchVer.vue";
  42. import FloorSpace from "./valueDelivery/FloorSpace.vue";
  43. import TemChart from "./valueDelivery/TemChart.vue";
  44. import lastEnergyChart from "./valueDelivery/lastEnergyChart.vue";
  45. import lastSaveEnergy from "./valueDelivery/lastSaveEnergy.vue";
  46. import pageHead from "./valueDelivery/pageHead.vue";
  47. import { mapState } from "vuex";
  48. export default {
  49. components: {
  50. NowData,
  51. FloorSpace,
  52. LastMonthData,
  53. AirSwitchVer,
  54. TemChart,
  55. lastEnergyChart,
  56. lastSaveEnergy,
  57. pageHead,
  58. },
  59. data() {
  60. return {};
  61. },
  62. computed: {
  63. ...mapState({
  64. lastAllEnergy: (state) => {
  65. // debugger;
  66. var lastAllEnergy = state.lastAllEnergy;
  67. lastAllEnergy.energyCompare = Number(
  68. (lastAllEnergy.energyCompare * 100).toFixed(0)
  69. );
  70. return lastAllEnergy;
  71. },
  72. }),
  73. },
  74. };
  75. </script>
  76. <style lang="less" scoped>
  77. @import "/src/assets/css/common.less";
  78. .verticalWrap {
  79. background: #f3fdff;
  80. padding: 50px 40px 100px;
  81. }
  82. .pageHead {
  83. padding-bottom: 50px;
  84. }
  85. .lastTotalEnergy {
  86. height: 535px;
  87. .bottomCont {
  88. width: 580px;
  89. margin: 4px auto;
  90. position: relative;
  91. img {
  92. width: 100%;
  93. }
  94. .showData {
  95. position: absolute;
  96. top: 0;
  97. left: 0;
  98. width: 100%;
  99. height: 100%;
  100. box-sizing: border-box;
  101. padding-top: 90px;
  102. display: flex;
  103. align-items: center;
  104. justify-content: center;
  105. flex-direction: column;
  106. .title {
  107. font-size: 28px;
  108. color: #575271;
  109. }
  110. .energySave {
  111. margin-top: 14px;
  112. font-size: 56px;
  113. span {
  114. font-size: 60px;
  115. }
  116. }
  117. .totalEnergy {
  118. margin-top: 18px;
  119. color: #2ec5f5;
  120. font-size: 28px;
  121. }
  122. }
  123. }
  124. }
  125. </style>