AirSwitchVer.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. .air-left {
  97. flex: 3;
  98. display: flex;
  99. justify-content: center;
  100. flex-direction: column;
  101. .bar-box {
  102. width: 88%;
  103. height: 10px;
  104. background: rgba(62, 140, 255, 0.2);
  105. border-radius: 6px;
  106. .bar {
  107. width: 80%;
  108. height: 10px;
  109. background: linear-gradient(
  110. 90deg,
  111. #76deff 0%,
  112. #3e91f8 100%
  113. );
  114. border-radius: 6px;
  115. }
  116. }
  117. .air-rate {
  118. font-size: 20px;
  119. display: flex;
  120. height: 40px;
  121. align-items: center;
  122. margin-top: 14px;
  123. color: #575271;
  124. .air-rate-value {
  125. color: #3b3558;
  126. font-size: 32px;
  127. padding-left: 8px;
  128. }
  129. }
  130. }
  131. .air-bg {
  132. flex: 1;
  133. padding-top: 6px;
  134. img {
  135. width: 240px;
  136. }
  137. }
  138. }
  139. }
  140. </style>