123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <template>
- <div class="airSwitch verticalClass">
- <div class="air-title head-title">
- <span>空调实时开关</span>
- <span class="status" v-bind:class="{ close: !airStatus }">
- {{ airStatus ? "空调已开启" : "空调已关闭" }}</span
- >
- </div>
- <div class="air-cont">
- <div class="air-left">
- <div class="bar-box">
- <div class="bar" v-bind:style="{width:airValue+'%'}"></div>
- </div>
- <div class="air-rate">
- <span>空调开启率</span>
- <span class="air-rate-value">{{ airValue }}%</span>
- </div>
- </div>
- <div class="air-bg">
- <img :src="[airStatus ? img.openImg : img.closeImg]" />
- </div>
- </div>
- </div>
- </template>
- <script>
- import air_close from "@/assets/horImg/air_close.png";
- import air_open from "@/assets/horImg/air_open.png";
- import { mapState } from "vuex";
- export default {
- name: "AirSwitch",
- props: {
- status: {
- type: Boolean,
- default: () => {
- return false;
- }, // 默认开
- },
- value: {
- type: Number,
- default: () => {
- return 75;
- }, // 默认开
- },
- },
- computed: {
- ...mapState({
- airValue(state) {
- var openRate = state.airCondition.openRate;
- var avalue = openRate
- ? Number((openRate * 100).toFixed(0))
- : openRate;
- return avalue;
- },
- airStatus: (state) => {
- var openRate = state.airCondition.openRate;
- var astate = openRate ? true : false;
- return astate;
- },
- }),
- },
- data() {
- return {
- img: {
- openImg: air_open,
- closeImg: air_close,
- },
- };
- },
- };
- </script>
- <style lang="less" scoped>
- .airSwitch {
- height: 250px;
- .air-title {
- .status {
- margin-left: 12px;
- display: inline-block;
- height: 22px;
- line-height: 22px;
- width: 82px;
- border-radius: 4px;
- background: rgba(126, 216, 116, 1);
- box-sizing: border-box;
- color: #ffffff;
- font-weight: 600;
- text-align: center;
- font-size: 14px;
- &.close {
- background: rgba(155, 152, 173, 1);
- }
- }
- }
- .air-cont {
- display: flex;
- flex-direction: row;
- padding-top:35px;
- .air-left {
- flex: 3;
- display: flex;
- // justify-content: center;
- flex-direction: column;
- padding-top:20px;
- .bar-box {
- width: 88%;
- height: 10px;
- background: rgba(62, 140, 255, 0.2);
- border-radius: 6px;
- .bar {
- width: 80%;
- height: 10px;
- background: linear-gradient(
- 90deg,
- #76deff 0%,
- #3e91f8 100%
- );
- border-radius: 6px;
- }
- }
- .air-rate {
- font-size: 20px;
- display: flex;
- height: 40px;
- align-items: center;
- margin-top: 14px;
- color: #575271;
- .air-rate-value {
- color: #3b3558;
- font-size: 32px;
- padding-left: 8px;
- }
- }
- }
- .air-bg {
- flex: 1;
- img {
- width: 240px;
- }
-
- }
- }
- }
- </style>
|