AirSwitchVer.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <template>
  2. <div class="airSwitch verticalClass">
  3. <div class="air-title head-title">
  4. <span>空调实时开关</span>
  5. <span class="status" v-bind:class="{ close: !airStatus }">
  6. {{ airStatus ? "空调已开启" : "空调已关闭" }}</span
  7. >
  8. </div>
  9. <div class="air-cont">
  10. <div class="air-left">
  11. <div class="bar-box">
  12. <div class="bar" v-bind:style="{width:airValue+'%'}"></div>
  13. </div>
  14. <div class="air-rate">
  15. <span>空调开启率</span>
  16. <span class="air-rate-value">{{ airValue }}%</span>
  17. </div>
  18. </div>
  19. <div class="air-bg">
  20. <img :src="[airStatus ? img.openImg : img.closeImg]" />
  21. </div>
  22. </div>
  23. </div>
  24. </template>
  25. <script>
  26. import air_close from "@/assets/horImg/air_close.png";
  27. import air_open from "@/assets/horImg/air_open.png";
  28. import { mapState } from "vuex";
  29. export default {
  30. name: "AirSwitch",
  31. props: {
  32. status: {
  33. type: Boolean,
  34. default: () => {
  35. return false;
  36. }, // 默认开
  37. },
  38. value: {
  39. type: Number,
  40. default: () => {
  41. return 75;
  42. }, // 默认开
  43. },
  44. },
  45. computed: {
  46. ...mapState({
  47. airValue(state) {
  48. var openRate = state.airCondition.openRate;
  49. var avalue = openRate
  50. ? Number((openRate * 100).toFixed(0))
  51. : openRate;
  52. return avalue;
  53. },
  54. airStatus: (state) => {
  55. var openRate = state.airCondition.openRate;
  56. var astate = openRate ? true : false;
  57. return astate;
  58. },
  59. }),
  60. },
  61. data() {
  62. return {
  63. img: {
  64. openImg: air_open,
  65. closeImg: air_close,
  66. },
  67. };
  68. },
  69. };
  70. </script>
  71. <style lang="less" scoped>
  72. .airSwitch {
  73. height: 250px;
  74. .air-title {
  75. .status {
  76. margin-left: 12px;
  77. display: inline-block;
  78. height: 22px;
  79. line-height: 22px;
  80. width: 82px;
  81. border-radius: 4px;
  82. background: rgba(126, 216, 116, 1);
  83. box-sizing: border-box;
  84. color: #ffffff;
  85. font-weight: 600;
  86. text-align: center;
  87. font-size: 14px;
  88. &.close {
  89. background: rgba(155, 152, 173, 1);
  90. }
  91. }
  92. }
  93. .air-cont {
  94. display: flex;
  95. flex-direction: row;
  96. padding-top:35px;
  97. .air-left {
  98. flex: 3;
  99. display: flex;
  100. // justify-content: center;
  101. flex-direction: column;
  102. padding-top:20px;
  103. .bar-box {
  104. width: 88%;
  105. height: 10px;
  106. background: rgba(62, 140, 255, 0.2);
  107. border-radius: 6px;
  108. .bar {
  109. width: 80%;
  110. height: 10px;
  111. background: linear-gradient(
  112. 90deg,
  113. #76deff 0%,
  114. #3e91f8 100%
  115. );
  116. border-radius: 6px;
  117. }
  118. }
  119. .air-rate {
  120. font-size: 20px;
  121. display: flex;
  122. height: 40px;
  123. align-items: center;
  124. margin-top: 14px;
  125. color: #575271;
  126. .air-rate-value {
  127. color: #3b3558;
  128. font-size: 32px;
  129. padding-left: 8px;
  130. }
  131. }
  132. }
  133. .air-bg {
  134. flex: 1;
  135. img {
  136. width: 240px;
  137. }
  138. }
  139. }
  140. }
  141. </style>