horizontalScreen.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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" :showPing="nowPage" />
  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" :showPing="nowPage" />
  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: null,
  96. horiInterval: null,
  97. };
  98. },
  99. mounted() {
  100. this.nowPage = 1;
  101. this.timePageShow();
  102. },
  103. methods: {
  104. doneTowPage() {
  105. //第二屏刷新结束 通知
  106. //debugger;
  107. this.nowPage = 3;
  108. this.timePageShow();
  109. },
  110. timePageShow() {
  111. var timeoutsign = setTimeout(() => {
  112. this.nowPage = this.nowPage + 1;
  113. if (this.nowPage == 4) {
  114. this.nowPage = 1;
  115. }
  116. if (this.nowPage == 2) {
  117. clearTimeout(timeoutsign);
  118. return;
  119. }
  120. this.timePageShow();
  121. }, 6000);
  122. },
  123. },
  124. destroyed() {
  125. //clearInterval(this.horiInterval);
  126. },
  127. computed: {
  128. ...mapState({
  129. lastAllEnergy: (state) => {
  130. //debugger;
  131. var lastAllEnergy = JSON.parse(
  132. JSON.stringify(state.lastAllEnergy)
  133. );
  134. lastAllEnergy.energyCompare = Number(
  135. (lastAllEnergy.energyCompare * 100).toFixed(0)
  136. );
  137. return lastAllEnergy;
  138. },
  139. }),
  140. },
  141. };
  142. </script>
  143. <style lang="less" scoped>
  144. .horizontalScreen {
  145. padding: 30px 40px;
  146. min-height: 100%;
  147. box-sizing: border-box;
  148. scrollbar-width: none;
  149. position: relative;
  150. .bg {
  151. position: absolute;
  152. top: 0;
  153. left: 0;
  154. z-index: -1;
  155. right: 0;
  156. bottom: 0;
  157. overflow: hidden;
  158. }
  159. .hor-head {
  160. // padding-top: 32px;
  161. // display: flex;
  162. // justify-content: center;
  163. margin-bottom: 30px;
  164. }
  165. .hor-nowData-content {
  166. // padding: 30px 36px;
  167. box-sizing: border-box;
  168. }
  169. .firstScreen {
  170. height: 910px;
  171. .content-left {
  172. width: calc(100% - 328px);
  173. }
  174. .content-right {
  175. width: 308px;
  176. }
  177. .content-left-cont {
  178. padding-top: 27px;
  179. .bottom-left {
  180. width: 446px;
  181. }
  182. .bottom-right {
  183. width: calc(100% - 466px);
  184. }
  185. }
  186. }
  187. .flexBetween {
  188. display: flex;
  189. justify-content: space-between;
  190. }
  191. }
  192. .secondScreen {
  193. .left {
  194. position: relative;
  195. height: 556px;
  196. width: 678px;
  197. .left-content {
  198. text-align: center;
  199. height: 390px;
  200. width: 100%;
  201. margin-top: 20px;
  202. position: relative;
  203. display: flex;
  204. justify-content: center;
  205. align-items: center;
  206. .lastbg {
  207. position: absolute;
  208. }
  209. .left-text {
  210. // width: 100%;
  211. // height: 100%;
  212. .left-content-first {
  213. font-size: 20px;
  214. font-weight: 500;
  215. line-height: 28px;
  216. &.blue {
  217. color: #2ec5f5;
  218. padding-top: 12px;
  219. }
  220. }
  221. .left-content-next {
  222. padding-top: 12px;
  223. font-size: 46px;
  224. font-weight: 600;
  225. line-height: 64px;
  226. .next-num {
  227. font-size: 48px;
  228. font-weight: 700;
  229. line-height: 58px;
  230. }
  231. }
  232. }
  233. }
  234. }
  235. .right {
  236. position: relative;
  237. height: 556px;
  238. width: calc(100% - 698px);
  239. }
  240. .chart-box {
  241. margin-top: 24px;
  242. // width: 1840px;
  243. height: 330px;
  244. }
  245. }
  246. </style>