lastSaveEnergy.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <div
  3. class="lastSaveEnergy"
  4. :class="[screenType == 'ver' ? 'verticalClass' : 'horizontalClass']"
  5. >
  6. <div class="head-title">
  7. <span>上月节约能耗</span>
  8. </div>
  9. <div class="bottomCont">
  10. <img src="@/assets/save_energy.png" />
  11. <div class="showData">
  12. <div class="leftsave">
  13. 节约电<br /><span>{{ lastAllEnergy.energySaving }}</span
  14. >度
  15. </div>
  16. <div class="equalTo">相当于</div>
  17. <div class="saveCo2">
  18. 减排<span>{{ lastAllEnergy.cdmCo2 }}</span
  19. >kg二氧化碳
  20. </div>
  21. <div class="saveCarbon">
  22. 减排<span>{{ lastAllEnergy.cdmC }}</span
  23. >kg碳
  24. </div>
  25. <div class="plantTree">
  26. 为国家种<span>{{ lastAllEnergy.cdmTree }}</span
  27. >棵树
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. </template>
  33. <script>
  34. import air_close from "@/assets/horImg/air_close.png";
  35. import air_open from "@/assets/horImg/air_open.png";
  36. import { mapState } from "vuex";
  37. export default {
  38. name: "lastSaveEnergy",
  39. props: {
  40. screenType: {
  41. type: String,
  42. default: () => {
  43. return "hor";
  44. }, //hor 横屏 vert 竖屏
  45. },
  46. },
  47. data() {
  48. return {};
  49. },
  50. computed: {
  51. ...mapState({
  52. lastAllEnergy: (state) => state.lastAllEnergy,
  53. }),
  54. },
  55. };
  56. </script>
  57. <style lang="less" scoped>
  58. .lastSaveEnergy {
  59. &.verticalClass {
  60. height: 535px;
  61. }
  62. &.horizontalClass {
  63. height: 100%;
  64. }
  65. .bottomCont {
  66. width: 900px;
  67. margin: 40px auto;
  68. position: relative;
  69. img {
  70. width: 100%;
  71. }
  72. .showData {
  73. position: absolute;
  74. top: 0;
  75. left: 0;
  76. width: 100%;
  77. height: 100%;
  78. box-sizing: border-box;
  79. // display: flex;
  80. // align-items: center;
  81. // justify-content: center;
  82. // flex-direction: column;
  83. .leftsave {
  84. position: absolute;
  85. left: 12px;
  86. top: 160px;
  87. color: #fff;
  88. width: 210px;
  89. line-height: 34px;
  90. text-align: center;
  91. span {
  92. font-size: 32px;
  93. }
  94. }
  95. .equalTo {
  96. position: absolute;
  97. left: 249px;
  98. top: 186px;
  99. font-size: 20px;
  100. }
  101. .saveCo2 {
  102. position: absolute;
  103. left: 562px;
  104. top: 32px;
  105. }
  106. .saveCarbon {
  107. position: absolute;
  108. left: 562px;
  109. top: 186px;
  110. }
  111. .plantTree {
  112. position: absolute;
  113. left: 562px;
  114. top: 340px;
  115. }
  116. }
  117. }
  118. }
  119. </style>