horizontalScreen.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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. v-show="nowPage == 1"
  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" ref="bottomright">
  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" v-show="nowPage == 2">
  30. <horFloorSpace :showPing="nowPage" @donetowpage="doneTowPage" />
  31. </div>
  32. <div class="hor-nowData-content secondScreen" v-show="nowPage == 3">
  33. <div class="flexBetween">
  34. <div class="left horizontalClass">
  35. <div class="head-title">
  36. <span>上月总能耗</span>
  37. </div>
  38. <div class="subhead-title">低能耗亲自然</div>
  39. <div class="left-content">
  40. <div class="left-bg lastbg">
  41. <img :src="lastMonthTotal" />
  42. </div>
  43. <div class="left-text">
  44. <div class="left-content-first">比基准能耗</div>
  45. <div class="left-content-next">
  46. 节能<span class="next-num"
  47. >{{
  48. lastAllEnergy.energyCompare
  49. }}%</span
  50. >
  51. </div>
  52. <div class="left-content-first blue">
  53. 总能耗{{ lastAllEnergy.energyTotal }}KWh
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. <div class="right ">
  59. <lastSaveEnergy screenType="hor" />
  60. </div>
  61. </div>
  62. <div class="chart-box ">
  63. <lastEnergyChart screenType="hor" />
  64. </div>
  65. </div>
  66. </div>
  67. </div>
  68. </template>
  69. <script>
  70. import hor_big_bg from "@/assets/horImg/hor_big_bg.png";
  71. import pageHead from "./valueDelivery/pageHead.vue";
  72. import NowData from "./valueDelivery/NowData.vue";
  73. import LastMonth from "./valueDelivery/LastMonthData.vue";
  74. import HorAirSwitch from "./valueDelivery/HorAirSwitch.vue";
  75. import lastSaveEnergy from "./valueDelivery/lastSaveEnergy.vue";
  76. import TemChart from "./valueDelivery/TemChart.vue";
  77. import lastEnergyChart from "./valueDelivery/lastEnergyChart.vue";
  78. import horFloorSpace from "./valueDelivery/horFloorSpace.vue";
  79. import { mapState } from "vuex";
  80. export default {
  81. components: {
  82. pageHead,
  83. NowData,
  84. HorAirSwitch,
  85. LastMonth,
  86. lastSaveEnergy,
  87. TemChart,
  88. lastEnergyChart,
  89. horFloorSpace,
  90. },
  91. data() {
  92. return {
  93. bgImg: hor_big_bg,
  94. lastMonthTotal: require("@/assets/horImg/hor_lastMonthTotal.png"),
  95. nowPage: 2,
  96. horiInterval: null,
  97. };
  98. },
  99. mounted() {
  100. //this.timePageShow();
  101. },
  102. methods: {
  103. doneTowPage() {
  104. //第二屏刷新结束 通知
  105. this.nowPage = 3;
  106. this.timePageShow();
  107. },
  108. timePageShow() {
  109. var timeoutsign = setTimeout(() => {
  110. this.nowPage = this.nowPage + 1;
  111. if (this.nowPage == 4) {
  112. this.nowPage = 1;
  113. }
  114. if (this.nowPage == 2) {
  115. //clearTimeout(timeoutsign);
  116. return;
  117. }
  118. this.timePageShow();
  119. }, 6000);
  120. },
  121. },
  122. destroyed() {
  123. clearInterval(this.horiInterval);
  124. },
  125. computed: {
  126. ...mapState({
  127. lastAllEnergy: (state) => {
  128. //debugger;
  129. var lastAllEnergy = JSON.parse(
  130. JSON.stringify(state.lastAllEnergy)
  131. );
  132. lastAllEnergy.energyCompare = Number(
  133. (lastAllEnergy.energyCompare * 100).toFixed(0)
  134. );
  135. return lastAllEnergy;
  136. },
  137. }),
  138. },
  139. };
  140. </script>
  141. <style lang="less" scoped>
  142. .horizontalScreen {
  143. padding: 30px 40px;
  144. min-height: 100%;
  145. box-sizing: border-box;
  146. scrollbar-width: none;
  147. position: relative;
  148. .bg {
  149. position: absolute;
  150. top: 0;
  151. left: 0;
  152. z-index: -1;
  153. right: 0;
  154. bottom: 0;
  155. overflow: hidden;
  156. }
  157. .hor-head {
  158. // padding-top: 32px;
  159. // display: flex;
  160. // justify-content: center;
  161. }
  162. .hor-nowData-content {
  163. // padding: 30px 36px;
  164. box-sizing: border-box;
  165. }
  166. .firstScreen {
  167. height: 910px;
  168. .content-left {
  169. width: calc(100% - 328px);
  170. }
  171. .content-right {
  172. width: 308px;
  173. }
  174. .content-left-cont {
  175. padding-top: 27px;
  176. .bottom-left {
  177. width: 446px;
  178. }
  179. .bottom-right {
  180. width: calc(100% - 466px);
  181. }
  182. }
  183. }
  184. .flexBetween {
  185. display: flex;
  186. justify-content: space-between;
  187. }
  188. }
  189. .secondScreen {
  190. .left {
  191. position: relative;
  192. height: 556px;
  193. width: 678px;
  194. .left-content {
  195. text-align: center;
  196. height: 390px;
  197. width: 100%;
  198. margin-top: 20px;
  199. position: relative;
  200. display: flex;
  201. justify-content: center;
  202. align-items: center;
  203. .lastbg {
  204. position: absolute;
  205. }
  206. .left-text {
  207. // width: 100%;
  208. // height: 100%;
  209. .left-content-first {
  210. font-size: 20px;
  211. font-weight: 500;
  212. line-height: 28px;
  213. &.blue {
  214. color: #2ec5f5;
  215. padding-top: 12px;
  216. }
  217. }
  218. .left-content-next {
  219. padding-top: 12px;
  220. font-size: 46px;
  221. font-weight: 600;
  222. line-height: 64px;
  223. .next-num {
  224. font-size: 48px;
  225. font-weight: 700;
  226. line-height: 58px;
  227. }
  228. }
  229. }
  230. }
  231. }
  232. .right {
  233. position: relative;
  234. height: 556px;
  235. width: calc(100% - 698px);
  236. }
  237. .chart-box {
  238. margin-top: 24px;
  239. // width: 1840px;
  240. height: 330px;
  241. }
  242. }
  243. </style>