horizontalScreen.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <template>
  2. <div class="horizontalScreen">
  3. <div class="bg">
  4. <img :src="bgImg" />
  5. </div>
  6. <div class="container">
  7. <div class="hor-head">
  8. <pageHead />
  9. </div>
  10. <div
  11. class="hor-nowData-content firstScreen flexBetween"
  12. style="display:none"
  13. >
  14. <div class="content-left">
  15. <NowData screenType="hor" />
  16. <div class="content-left-cont flexBetween">
  17. <div class="bottom-left">
  18. <HorAirSwitch />
  19. </div>
  20. <div class="bottom-right">
  21. <TemChart screenType="hor" />
  22. </div>
  23. </div>
  24. </div>
  25. <div class="content-right">
  26. <LastMonth screenType="hor" />
  27. </div>
  28. </div>
  29. <div class="hor-nowData-content secondScreen">
  30. <div class="flexBetween">
  31. <div class="left horizontalClass">
  32. <div class="head-title">
  33. <span>上月总能耗</span>
  34. </div>
  35. <div class="subhead-title">低能耗亲自然</div>
  36. <div class="left-content">
  37. <div class="left-bg lastbg">
  38. <img :src="lastMonthTotal" />
  39. </div>
  40. <div class="left-text">
  41. <div class="left-content-first">比基准能耗</div>
  42. <div class="left-content-next">
  43. 节能<span class="next-num"
  44. >{{ lastAllEnergy.energyCompare }}%</span
  45. >
  46. </div>
  47. <div class="left-content-first blue">
  48. 总能耗{{ lastAllEnergy.energyTotal }}KWh
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. <div class="right ">
  54. <lastSaveEnergy screenType="hor" />
  55. </div>
  56. </div>
  57. <div class="chart-box ">
  58. <lastEnergyChart screenType="hor" />
  59. </div>
  60. </div>
  61. <div class="hor-nowData-content" style="display:none">
  62. <horFloorSpace />
  63. </div>
  64. </div>
  65. </div>
  66. </template>
  67. <script>
  68. import hor_big_bg from "@/assets/horImg/hor_big_bg.png";
  69. import pageHead from "./valueDelivery/pageHead.vue";
  70. import NowData from "./valueDelivery/NowData.vue";
  71. import LastMonth from "./valueDelivery/LastMonthData.vue";
  72. import HorAirSwitch from "./valueDelivery/HorAirSwitch.vue";
  73. import lastSaveEnergy from "./valueDelivery/lastSaveEnergy.vue";
  74. import TemChart from "./valueDelivery/TemChart.vue";
  75. import lastEnergyChart from "./valueDelivery/lastEnergyChart.vue";
  76. import horFloorSpace from "./valueDelivery/horFloorSpace.vue";
  77. import { mapState } from "vuex";
  78. export default {
  79. components: {
  80. pageHead,
  81. NowData,
  82. HorAirSwitch,
  83. LastMonth,
  84. lastSaveEnergy,
  85. TemChart,
  86. lastEnergyChart,
  87. horFloorSpace,
  88. },
  89. data() {
  90. return {
  91. bgImg: hor_big_bg,
  92. lastMonthTotal: require("@/assets/horImg/hor_lastMonthTotal.png"),
  93. };
  94. },
  95. computed: {
  96. ...mapState({
  97. lastAllEnergy: (state) => {
  98. //debugger;
  99. var lastAllEnergy = state.lastAllEnergy;
  100. lastAllEnergy.energyCompare = Number(
  101. (lastAllEnergy.energyCompare * 100).toFixed(0)
  102. );
  103. return lastAllEnergy;
  104. },
  105. }),
  106. },
  107. };
  108. </script>
  109. <style lang="less" scoped>
  110. .horizontalScreen {
  111. padding: 30px 40px;
  112. scrollbar-width: none;
  113. .bg {
  114. position: absolute;
  115. top: 0;
  116. left: 0;
  117. z-index: -1;
  118. }
  119. .hor-head {
  120. // padding-top: 32px;
  121. // display: flex;
  122. // justify-content: center;
  123. }
  124. .hor-nowData-content {
  125. // padding: 30px 36px;
  126. box-sizing: border-box;
  127. }
  128. .firstScreen {
  129. height: 910px;
  130. .content-left {
  131. width: calc(100% - 328px);
  132. }
  133. .content-right {
  134. width: 308px;
  135. }
  136. .content-left-cont {
  137. padding-top: 27px;
  138. .bottom-left {
  139. width: 446px;
  140. }
  141. .bottom-right {
  142. width: calc(100% - 466px);
  143. }
  144. }
  145. }
  146. .flexBetween {
  147. display: flex;
  148. justify-content: space-between;
  149. }
  150. }
  151. .secondScreen {
  152. .left {
  153. position: relative;
  154. height: 556px;
  155. width: 678px;
  156. .left-content {
  157. text-align: center;
  158. height: 390px;
  159. width: 100%;
  160. margin-top: 20px;
  161. position: relative;
  162. display: flex;
  163. justify-content: center;
  164. align-items: center;
  165. .lastbg {
  166. position: absolute;
  167. }
  168. .left-text {
  169. // width: 100%;
  170. // height: 100%;
  171. .left-content-first {
  172. font-size: 20px;
  173. font-weight: 500;
  174. line-height: 28px;
  175. &.blue {
  176. color: #2ec5f5;
  177. padding-top: 12px;
  178. }
  179. }
  180. .left-content-next {
  181. padding-top: 12px;
  182. font-size: 46px;
  183. font-weight: 600;
  184. line-height: 64px;
  185. .next-num {
  186. font-size: 48px;
  187. font-weight: 700;
  188. line-height: 58px;
  189. }
  190. }
  191. }
  192. }
  193. }
  194. .right {
  195. position: relative;
  196. height: 556px;
  197. width: calc(100% - 698px);
  198. }
  199. .chart-box {
  200. margin-top: 24px;
  201. // width: 1840px;
  202. height: 330px;
  203. }
  204. }
  205. </style>