123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- <template>
- <div class="horizontalScreen">
- <div class="bg">
- <img :src="bgImg" />
- </div>
- <div class="container">
- <div class="hor-head">
- <pageHead />
- </div>
- <div
- class="hor-nowData-content firstScreen flexBetween"
- v-show="nowPage == 1"
- >
- <div class="content-left">
- <NowData screenType="hor" />
- <div class="content-left-cont flexBetween">
- <div class="bottom-left">
- <HorAirSwitch />
- </div>
- <div class="bottom-right" ref="bottomright">
- <TemChart screenType="hor" :showPing="nowPage" />
- </div>
- </div>
- </div>
- <div class="content-right">
- <LastMonth screenType="hor" />
- </div>
- </div>
- <div class="hor-nowData-content" v-show="nowPage == 2">
- <HorFloorSpace :showPing="nowPage" @donetowpage="doneTowPage" />
- </div>
- <div class="hor-nowData-content secondScreen" v-show="nowPage == 3">
- <div class="flexBetween">
- <div class="left horizontalClass">
- <div class="head-title">
- <span>上月总能耗</span>
- </div>
- <div class="subhead-title">低能耗亲自然</div>
- <div class="left-content">
- <div class="left-bg lastbg">
- <img :src="lastMonthTotal" />
- </div>
- <div class="left-text">
- <div class="left-content-first">比基准能耗</div>
- <div class="left-content-next">
- 节能<span class="next-num"
- >{{
- lastAllEnergy.energyCompare
- }}%</span
- >
- </div>
- <div class="left-content-first blue">
- 总能耗{{ lastAllEnergy.energyTotal }}KWh
- </div>
- </div>
- </div>
- </div>
- <div class="right ">
- <lastSaveEnergy screenType="hor" />
- </div>
- </div>
- <div class="chart-box ">
- <lastEnergyChart screenType="hor" :showPing="nowPage" />
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import hor_big_bg from "@/assets/horImg/hor_big_bg.png";
- import pageHead from "./valueDelivery/pageHead.vue";
- import NowData from "./valueDelivery/NowData.vue";
- import LastMonth from "./valueDelivery/LastMonthData.vue";
- import HorAirSwitch from "./valueDelivery/HorAirSwitch.vue";
- import lastSaveEnergy from "./valueDelivery/lastSaveEnergy.vue";
- import TemChart from "./valueDelivery/TemChart.vue";
- import lastEnergyChart from "./valueDelivery/lastEnergyChart.vue";
- import HorFloorSpace from "./valueDelivery/HorFloorSpace.vue";
- import { mapState } from "vuex";
- export default {
- components: {
- pageHead,
- NowData,
- HorAirSwitch,
- LastMonth,
- lastSaveEnergy,
- TemChart,
- lastEnergyChart,
- HorFloorSpace,
- },
- data() {
- return {
- bgImg: hor_big_bg,
- lastMonthTotal: require("@/assets/horImg/hor_lastMonthTotal.png"),
- nowPage: null,
- horiInterval: null,
- };
- },
- mounted() {
- this.nowPage = 1;
- this.timePageShow();
- },
- methods: {
- doneTowPage() {
- //第二屏刷新结束 通知
- //debugger;
- this.nowPage = 3;
- this.timePageShow();
- },
- timePageShow() {
- var timeoutsign = setTimeout(() => {
- this.nowPage = this.nowPage + 1;
- if (this.nowPage == 4) {
- this.nowPage = 1;
- }
- if (this.nowPage == 2) {
- clearTimeout(timeoutsign);
- return;
- }
- this.timePageShow();
- }, 6000);
- },
- },
- destroyed() {
- //clearInterval(this.horiInterval);
- },
- computed: {
- ...mapState({
- lastAllEnergy: (state) => {
- //debugger;
- var lastAllEnergy = JSON.parse(
- JSON.stringify(state.lastAllEnergy)
- );
- lastAllEnergy.energyCompare = Number(
- (lastAllEnergy.energyCompare * 100).toFixed(0)
- );
- return lastAllEnergy;
- },
- }),
- },
- };
- </script>
- <style lang="less" scoped>
- .horizontalScreen {
- padding: 30px 40px;
- min-height: 100%;
- box-sizing: border-box;
- scrollbar-width: none;
- position: relative;
- .bg {
- position: absolute;
- top: 0;
- left: 0;
- z-index: -1;
- right: 0;
- bottom: 0;
- overflow: hidden;
- }
- .hor-head {
- // padding-top: 32px;
- // display: flex;
- // justify-content: center;
- margin-bottom: 30px;
- }
- .hor-nowData-content {
- // padding: 30px 36px;
- box-sizing: border-box;
- }
- .firstScreen {
- height: 910px;
- .content-left {
- width: calc(100% - 328px);
- }
- .content-right {
- width: 308px;
- }
- .content-left-cont {
- padding-top: 27px;
- .bottom-left {
- width: 446px;
- }
- .bottom-right {
- width: calc(100% - 466px);
- }
- }
- }
- .flexBetween {
- display: flex;
- justify-content: space-between;
- }
- }
- .secondScreen {
- .left {
- position: relative;
- height: 556px;
- width: 678px;
- .left-content {
- text-align: center;
- height: 390px;
- width: 100%;
- margin-top: 20px;
- position: relative;
- display: flex;
- justify-content: center;
- align-items: center;
- .lastbg {
- position: absolute;
- }
- .left-text {
- // width: 100%;
- // height: 100%;
- .left-content-first {
- font-size: 20px;
- font-weight: 500;
- line-height: 28px;
- &.blue {
- color: #2ec5f5;
- padding-top: 12px;
- }
- }
- .left-content-next {
- padding-top: 12px;
- font-size: 46px;
- font-weight: 600;
- line-height: 64px;
- .next-num {
- font-size: 48px;
- font-weight: 700;
- line-height: 58px;
- font-size: Persagy;
- }
- }
- }
- }
- }
- .right {
- position: relative;
- height: 556px;
- width: calc(100% - 698px);
- }
- .chart-box {
- margin-top: 24px;
- // width: 1840px;
- height: 330px;
- }
- }
- </style>
|