zhaojijng 3 years ago
parent
commit
84b70277c5

+ 4 - 3
src/App.vue

@@ -11,13 +11,14 @@ export default {
     data() {
         return {};
     },
-    created() {
+    created() {//对于两个组件的 接口写在了这里
         this.getAirCondition();//空调数据
-        this.getLastAllEnergy();
+        this.getLastAllEnergy();//上月所有能耗数据  上月总能耗 上月节约能耗
+        this.getWeahter();//获取天气
     },
     components: {},
     methods: {
-        ...mapActions(["getAirCondition","getLastAllEnergy"]),
+        ...mapActions(["getAirCondition","getLastAllEnergy","getWeahter"]),
     },
 };
 </script>

+ 8 - 4
src/api/fistpage.ts

@@ -1,6 +1,10 @@
 export default {
-    queryConditionerStatus: "/daping/environment/queryConditionerStatus",//空调状态
-    queryEnvHistory: "/daping/environment/queryEnvHistory",//上月温度
-    queryEnvCurrent: "/daping/environment/queryEnvCurrent",//实时数据
-    queryIndoorTempList: "/daping/environment/queryIndoorTempList",//实时温度
+    queryConditionerStatus:
+        "/daping/duoduo-service/setup-service/environment/queryConditionerStatus", //空调状态
+    queryEnvHistory:
+        "/daping/duoduo-service/setup-service/environment/queryEnvHistory", //上月温度
+    queryEnvCurrent:
+        "/daping/duoduo-service/setup-service/environment/queryEnvCurrent", //实时数据
+    queryIndoorTempList:
+        "/daping/duoduo-service/setup-service/environment/queryIndoorTempList", //实时温度
 };

+ 1 - 1
src/api/index.ts

@@ -9,5 +9,5 @@ const allApi = files.keys().reduce((con: any, src: string) => {
     }
     return con;
 }, {});
-console.log("con", allApi);
+
 export default allApi;

+ 8 - 7
src/api/second.ts

@@ -1,9 +1,10 @@
 export default {
-    queryFs: "/daping/object/floor/queryFs", //获取楼层
-    queryParam: "/daping/object/floor/queryParam", //获取楼层详情
-    getWeatherCurrent: "/weather/duoduo-service/object-service/weather/getCurrent", //天气
-
-    queryLastDayEnergy: "/daping/energy/week/day/query", //上月每日能耗
-    queryLastAllEnergy: "/daping/sceneValue/query", //上月所有能耗
-
+    queryFs: "/daping/duoduo-service/object-service/object/floor/queryFs", //获取楼层
+    queryParam: "/daping/duoduo-service/object-service/object/floor/queryParam", //获取楼层详情
+    getWeatherCurrent:
+        "/weather/duoduo-service/object-service/weather/getCurrent", //天气
+    queryLastDayEnergy:
+        "/daping/duoduo-service/review-service/energy/week/day/query", //上月每日能耗
+    queryLastAllEnergy:
+        "/daping/duoduo-service/review-service/sceneValue/query", //上月所有能耗
 };

BIN
src/assets/horImg/changeHor.png


+ 35 - 36
src/router/index.ts

@@ -1,42 +1,41 @@
-import Vue from 'vue'
-import VueRouter, { RouteConfig } from 'vue-router'
-import Home from '@/views/Home.vue'
+import Vue from "vue";
+import VueRouter, { RouteConfig } from "vue-router";
+import Home from "@/views/Home.vue";
 
-Vue.use(VueRouter)
+Vue.use(VueRouter);
 
 const routes: Array<RouteConfig> = [
-  {
-    path: '/',
-    name: 'Home',
-    component: Home
-  },
-  {
-    path: '/verticalScreen',
-    name: 'verticalScreen',
-    component: () => import( '@/views/verticalScreen.vue')
-  },
-  {
-    path: '/horizontalScreen',
-    name: 'horizontalScreen',
-    component: () => import( '@/views/horizontalScreen.vue')
-  },
-  {
-    path: '/horTwo',
-    name: 'horTwo',
-    component: () => import( '@/views/horTwo.vue')
-  },
-  {
-    path: '/horThree',
-    name: 'horThree',
-    component: () => import( '@/views/horThree.vue')
-  },
-  
-]
+    {
+        path: "/",
+        name: "Home",
+        redirect: { name: "verticalScreen" },
+    },
+    {
+        path: "/verticalScreen",
+        name: "verticalScreen",
+        component: () => import("@/views/verticalScreen.vue"),
+    },
+    {
+        path: "/horizontalScreen",
+        name: "horizontalScreen",
+        component: () => import("@/views/horizontalScreen.vue"),
+    },
+    {
+        path: "/horTwo",
+        name: "horTwo",
+        component: () => import("@/views/horTwo.vue"),
+    },
+    {
+        path: "/horThree",
+        name: "horThree",
+        component: () => import("@/views/horThree.vue"),
+    },
+];
 
 const router = new VueRouter({
-  mode: 'history',
-  base: process.env.BASE_URL,
-  routes
-})
+    mode: "history",
+    base: process.env.BASE_URL,
+    routes,
+});
 
-export default router
+export default router;

+ 18 - 3
src/store/index.ts

@@ -11,6 +11,7 @@ export default new Vuex.Store({
         airCondition: {}, //空调情况
         lastMonthData: [], //上月数据
         lastAllEnergy: {}, //上月所有能耗数据
+        weatherCont: {}, //天气
     },
     mutations: {
         getRealTimeData(state, data) {
@@ -26,6 +27,9 @@ export default new Vuex.Store({
         getLastAllEnergy(state, data) {
             state.lastAllEnergy = data;
         },
+        getWeahter(state, data) {
+            state.weatherCont = data;
+        },
     },
     actions: {
         getRealTimeData({ state, commit }, data) {
@@ -64,8 +68,9 @@ export default new Vuex.Store({
                     commit("getLastMonthData", resdata);
                 });
         },
+
         getLastAllEnergy({ state, commit }, data) {
-            //上月所有能耗数据
+            //上月所有能耗数据  上月总能耗 上月节约能耗
             axios
                 .post(api.queryLastAllEnergy, {
                     criteria: {
@@ -73,11 +78,21 @@ export default new Vuex.Store({
                     },
                 })
                 .then((res: any) => {
-                   // debugger;
-                    console.log("getLastAllEnergy", res);
+                    // debugger;
+                    
                     var resdata = res.data.content[0] || {};
                     commit("getLastAllEnergy", resdata);
                 });
         },
+        getWeahter({ state, commit }, data) {
+            axios
+                .get(api.getWeatherCurrent + "?projectId=Pj1101020002")
+                .then((res: any) => {
+                    //temperature = res.data.content.temperature;
+                    //debugger;
+                    var weatherCont = res.data.content||{};
+                    commit("getWeahter", weatherCont);
+                });
+        },
     },
 });

+ 1 - 1
src/views/horTwo.vue

@@ -20,7 +20,7 @@
 <script lang="ts">
 import Vue from "vue";
 import pageHead from "./valueDelivery/pageHead.vue";
-import HorFloorSpace from "./valueDelivery/HorFloorSpace2.vue";
+import HorFloorSpace from "./valueDelivery/horFloorSpace.vue";
 declare function require(img: string): string;
 const hor_big_bg = require("@/assets/horImg/hor_big_bg.png");
 

+ 24 - 8
src/views/horizontalScreen.vue

@@ -9,7 +9,7 @@
             </div>
             <div
                 class="hor-nowData-content firstScreen flexBetween"
-                style="display:none"
+                v-show="nowPage == 1"
             >
                 <div class="content-left">
                     <NowData screenType="hor" />
@@ -17,7 +17,7 @@
                         <div class="bottom-left">
                             <HorAirSwitch />
                         </div>
-                        <div class="bottom-right">
+                        <div class="bottom-right" ref="bottomright">
                             <TemChart screenType="hor" />
                         </div>
                     </div>
@@ -26,7 +26,10 @@
                     <LastMonth screenType="hor" />
                 </div>
             </div>
-            <div class="hor-nowData-content secondScreen">
+            <div class="hor-nowData-content" v-show="nowPage == 2">
+                <horFloorSpace />
+            </div>
+            <div class="hor-nowData-content secondScreen" v-show="nowPage == 3">
                 <div class="flexBetween">
                     <div class="left horizontalClass">
                         <div class="head-title">
@@ -41,7 +44,9 @@
                                 <div class="left-content-first">比基准能耗</div>
                                 <div class="left-content-next">
                                     节能<span class="next-num"
-                                        >{{ lastAllEnergy.energyCompare }}%</span
+                                        >{{
+                                            lastAllEnergy.energyCompare
+                                        }}%</span
                                     >
                                 </div>
                                 <div class="left-content-first blue">
@@ -58,9 +63,6 @@
                     <lastEnergyChart screenType="hor" />
                 </div>
             </div>
-            <div class="hor-nowData-content" style="display:none">
-                <horFloorSpace />
-            </div>
         </div>
     </div>
 </template>
@@ -90,13 +92,27 @@ export default {
         return {
             bgImg: hor_big_bg,
             lastMonthTotal: require("@/assets/horImg/hor_lastMonthTotal.png"),
+            nowPage: 2,
         };
     },
+    mounted() {
+       // debugger;
+        // setInterval(() => {
+        //     console.log("horizontalScreen-setInterval", this.nowPage);
+        //     //debugger;
+        //     this.nowPage = this.nowPage + 1;
+        //     if (this.nowPage == 4) {
+        //         this.nowPage = 1;
+        //     }
+        // }, 6000);
+    },
     computed: {
         ...mapState({
             lastAllEnergy: (state) => {
                 //debugger;
-                var lastAllEnergy = state.lastAllEnergy;
+                var lastAllEnergy = JSON.parse(
+                    JSON.stringify(state.lastAllEnergy)
+                );
                 lastAllEnergy.energyCompare = Number(
                     (lastAllEnergy.energyCompare * 100).toFixed(0)
                 );

+ 0 - 95
src/views/valueDelivery/AirSwitch2.vue

@@ -1,95 +0,0 @@
-<template>
-    <div class="airSwitch">
-        <div class="air-title">
-            <span>空调实时开关</span>
-        </div>
-        <div class="air-status">
-            <span>{{status ? "空调已开启" : "空调已关闭"}}</span>
-        </div>
-        <div class="air-bg">
-            <img :src="[status ? img.openImg : img.closeImg]" />
-        </div>
-        <div class="air-rate">
-            <span>空调开启率</span>
-            <span class="air-rate-value">{{value}}%</span>
-        </div>
-    </div>
-</template>
-<script>
-import air_close from '@/assets/horImg/air_open.png';
-import air_open from '@/assets/horImg/air_close.png';
-export default {
-    name: "AirSwitch",
-    props: {
-        status: {
-            type: Boolean,
-            default: () => { return true } // 默认开
-        },
-        value: {
-            type: Number,
-            default: () => { return 75 } // 默认开
-        },
-
-    },
-    data() {
-        return {
-            img: {
-                openImg: air_open,
-                closeImg: air_close,
-            }
-        }
-    },
-}
-</script>
-<style lang="less" scoped>
-.airSwitch {
-    padding: 24px 32px;
-    height: 388px;
-    width: 448px;
-    border-radius: 20px;
-    border: 2px solid #ffffff;
-    background: #ffffffcc;
-    .air-title {
-        font-size: 20px;
-        font-weight: 600;
-        line-height: 28px;
-        color: #3b3558;
-    }
-    .air-status {
-        margin-top: 8px;
-        height: 24px;
-        width: 86px;
-        border-radius: 4px;
-        padding: 2px, 8px, 2px, 8px;
-        background: rgba(126, 216, 116, 1);
-        padding: 2px 8px;
-        box-sizing: border-box;
-        color: #ffffff;
-        font-weight: 600;
-        line-height: 20px;
-        text-align: center;
-        &.close {
-            background: rgba(155, 152, 173, 1);
-        }
-    }
-    .air-bg {
-        padding-top: 36px;
-        padding-bottom: 54px;
-        text-align: center;
-    }
-    .air-rate {
-        font-weight: 400;
-        line-height: 20px;
-        color: #575271;
-        .air-rate-value {
-            color: #3b3558;
-            font-family: Persagy;
-            font-size: 20px;
-            font-weight: 700;
-            line-height: 24px;
-        }
-    }
-}
-</style>
-
-

+ 16 - 18
src/views/valueDelivery/FloorSpace.vue

@@ -138,14 +138,13 @@ export default {
             this.nowIndicatorIndex = index;
         },
         queryFs() {
-            //let loadingInstance = Loading.service({ fullscreen: true });
-            var loading = this.$loading({ fullscreen: true });
+           // var loading = this.$loading({ fullscreen: true });
             this.$axios
                 .post(this.$api.queryFs, {
                     criteria: {
                         projectId: "Pj1101020002",
                     },
-                    size: 14,
+                    size: 14,//最多14层
                     page: 1,
                     orders: [
                         {
@@ -154,10 +153,9 @@ export default {
                         },
                     ],
                 })
-                .then((res) => {
-                    // loadingInstance.close();
-                    loading.close();
-                    console.log("queryFs", res);
+                .then((res) => {     
+                    //loading.close();
+              
                     var allFloor = res.data.content || [];
                     allFloor = allFloor.filter(function(item) {
                         return item.spaceNum > 0;
@@ -175,7 +173,7 @@ export default {
                         secondPageNum = Math.floor(allFloorNum / 2);
                     }
 
-                    //this.nowPage = 1; //取第一屏
+                    this.nowPage = 1; //取第一屏
 
                     var firstMaxSpace = this.floorHandle(firstPageNum); //第一屏 一层最多空间
                     var sendMaxSpace = this.floorHandle(secondPageNum);
@@ -198,18 +196,18 @@ export default {
                         return obj;
                     });
                     this.nowIndicatorIndex = 0;
-                    // var floorparam =
-                    //     this.nowPage == 1
-                    //         ? this.firstPageParams
-                    //         : this.secondPageParams;
-                    // this.queryParam(floorparam);
+                    var floorparam =
+                        this.nowPage == 1
+                            ? this.firstPageParams
+                            : this.secondPageParams;
+                    this.queryParam(floorparam);
                 }).catch((res) =>{
-                      loading.close();
+                     // loading.close();
                 });
         },
 
         queryParam(floorparam) {
-            var loading = this.$loading({ fullscreen: true });
+            //var loading = this.$loading({ fullscreen: true });
             //             Tdb 温度
             // CO2 二氧化碳
             // RH 湿度
@@ -228,8 +226,8 @@ export default {
                     floorparam
                 )
                 .then((res) => {
-                    loading.close();
-                    console.log("queryParam", res);
+                    //loading.close();
+                   
                     var showFloors = res.data.content || [];
                     showFloors.forEach((ele) => {
                         var filterFloorarr = this.allFloor.filter((item) => {
@@ -245,7 +243,7 @@ export default {
                         ele.spacewidth = 100 / lineNum;
                     });
                     this.showFloors = showFloors;
-                    console.log("showFloors", showFloors);
+                   
                 });
         },
         floorHandle(floorNum) {

+ 1 - 1
src/views/valueDelivery/HorAirSwitch.vue

@@ -55,7 +55,7 @@ export default {
             airStatus: (state) => {
                 //debugger
                  var statecopu=JSON.parse(JSON.stringify(state))  ;
-                console.log('airStatus',statecopu);
+                //console.log('airStatus',statecopu);
 
                 var openRate = state.airCondition.openRate;
                 var astate = openRate ? true : false;

+ 18 - 38
src/views/valueDelivery/HorFloorSpace.vue

@@ -1,22 +1,6 @@
 <template>
     <div class="floorSpace">
         <div class="leftChange">
-            <!-- <div class="allIndicator">
-                <div
-                    class="eachItem"
-                    v-for="item in allIndicator"
-                    @click="clickIndicator(item)"
-                    v-bind:class="{'select':item.id==selIndicator.id}"
-                ><span>{{item.name}}</span><span class="bar"></span></div>
-            </div>
-            <div class="imageDiv">
-                <img :src="selIndicator.img" />
-            </div>
-            <div class="textCont">
-                平均<span>{{selIndicator.name}}</span><span class="value">234</span><span>
-                    {{selIndicator.unit}}
-                </span>
-            </div> -->
             <div class="allIndicator">
                 <div
                     class="eachItem "
@@ -52,7 +36,7 @@
                         :key="id"
                         v-bind:style="{ width: item.spacewidth + '%' }"
                     >
-                        <div class="space-name" v-bind:style="{backgroundColor:selectColor(childItem.avgValues,selIndicator.id,true)}">{{childItem.localName}}</div>
+                        <div class="space-name" v-bind:style="{backgroundColor:selectColor(childItem.avgValues,selIndicatorId,true)}">{{childItem.localName}}</div>
                     </div>
                 </div>
             </div>
@@ -69,6 +53,7 @@ export default {
     data() {
         return {
             selIndicator: {},      
+            selIndicatorId:'',//为了颜色用
              //              温度
             //  二氧化碳
             //  湿度
@@ -121,7 +106,7 @@ export default {
             // debugger;
             if (newv == oldv) return;
             this.selIndicator = this.allIndicator[newv];
-            this.showFloors =[];
+           // this.showFloors =[];
             //第一屏的参数 第二屏的参数
             var floorparam =
                 this.nowPage == 1
@@ -140,14 +125,13 @@ export default {
             this.nowIndicatorIndex = index;
         },
          queryFs() {
-            //let loadingInstance = Loading.service({ fullscreen: true });
-            var loading = this.$loading({ fullscreen: true });
+            //var loading = this.$loading({ fullscreen: true });
             this.$axios
                 .post(this.$api.queryFs, {
                     criteria: {
                         projectId: "Pj1101020002",
                     },
-                    size: 14,
+                    size: 14,//最多14层
                     page: 1,
                     orders: [
                         {
@@ -157,9 +141,8 @@ export default {
                     ],
                 })
                 .then((res) => {
-                    // loadingInstance.close();
-                    loading.close();
-                    console.log("queryFs", res);
+                   // loading.close();
+                    //console.log("queryFs", res);
                     var allFloor = res.data.content || [];
                     allFloor = allFloor.filter(function(item) {
                         return item.spaceNum > 0;
@@ -180,13 +163,13 @@ export default {
                     var firstMaxSpace = this.floorHandle(firstPageNum); //第一屏 一层最多空间
                     var sendMaxSpace = this.floorHandle(secondPageNum);
                     var firstPageFloors = allFloor.slice(0, firstPageNum); //第一屏 所有楼层
-                    var secondPageFloors = allFloor.slice(firstPageNum);
-
+                    var secondPageFloors = allFloor.slice(firstPageNum);//第二屏 所有楼层
+                    //第一屏的参数 第二屏的参数
                     this.firstPageParams = firstPageFloors.map((item) => {
                         var obj = {};
                         obj.id = item.id;
                         obj.projectId = "Pj1101020002";
-                        obj.spaceNum = firstMaxSpace;
+                        obj.spaceNum = firstMaxSpace;//最多空间数
                         return obj;
                     });
 
@@ -197,19 +180,15 @@ export default {
                         obj.spaceNum = sendMaxSpace;
                         return obj;
                     });
-                    //第一屏的参数 第二屏的参数
-                    // var floorparam =
-                    //     this.nowPage == 1
-                    //         ? this.firstPageParams
-                    //         : this.secondPageParams;
-                    // this.queryParam(floorparam);
+                    
+                
                     this.nowIndicatorIndex=0;
                 }).catch(function(res){
-                    loading.close();
+                   // loading.close();
                 });
         },
         queryParam(floorparam) {
-            var loading = this.$loading({ fullscreen: true });
+            //var loading = this.$loading({ fullscreen: true });
 
             var endTime = moment();
             var startTime = moment().subtract(15, "minutes");//往前取15分钟
@@ -222,8 +201,8 @@ export default {
                     floorparam
                 )
                 .then((res) => {
-                    loading.close();
-                    console.log("queryParam", res);
+                   // loading.close();
+                    //console.log("queryParam", res);
                     var showFloors = res.data.content || [];
                     showFloors.forEach((ele) => {
                         var filterFloorarr = this.allFloor.filter((item) => {
@@ -239,7 +218,8 @@ export default {
                         ele.spacewidth = 100 / lineNum;
                     });
                     this.showFloors = showFloors;
-                    console.log('showFloors',showFloors);
+                    this.selIndicatorId=this.selIndicator.id;
+                    //console.log('showFloors',showFloors);
                 });
         },
         spaceHandle(spaceNum,floorNum){//返回一层 的每一行 几个房间

+ 0 - 84
src/views/valueDelivery/HorFloorSpace2.vue

@@ -1,84 +0,0 @@
-<template>
-    <div class="floorSpace">
-        <div
-            class="floor-item"
-            v-for="(item,index) in floorData"
-            :key="index"
-        >
-            <div class="floor-num"><span>{{item.floorName}}</span></div>
-            <div class="floor-space">
-                <div
-                    class="space-name"
-                    v-for="(childItem,id) in item.data"
-                    :key="id"
-                >
-                    <span>{{childItem.name}}</span>
-                </div>
-            </div>
-        </div>
-    </div>
-</template>
-<script lang="ts">
-import Vue from "vue";
-export default Vue.extend({
-    name: 'FloorSpace',
-    data() {
-        return {
-            floorData: [
-                {
-                    floorName: "8F",
-                    data: [
-                        { id: 1, name: "空间1" },
-                        { id: 2, name: "空间2" },
-                        { id: 3, name: "空间3" },
-                    ],
-                },
-                {
-                    floorName: "7F",
-                    data: [
-                        { id: 1, name: "空间1" },
-                        { id: 2, name: "空间2" },
-                        { id: 3, name: "空间3" },
-                    ],
-                },
-            ],
-        };
-    },
-});
-</script>
-<style lang="less" scoped>
-.floorSpace {
-    .floor-item {
-        display: flex;
-        height: 130px;
-        padding: 22px 0;
-        box-sizing: border-box;
-    }
-
-    .floor-num {
-        display: flex;
-        margin: 0 23px;
-        align-items: center;
-        font-family: Persagy;
-        font-size: 36px;
-        font-weight: 700;
-        line-height: 43px;
-        color: #3b3558;
-    }
-    .floor-space {
-        display: flex;
-    }
-    .space-name {
-        margin-right: 8px;
-        display: flex;
-        justify-content: center;
-        align-items: center;
-        height: 86px;
-        width: 90px;
-        border-radius: 8px;
-        background: #d9f5d6;
-    }
-}
-</style>
-
-

+ 0 - 153
src/views/valueDelivery/HorLastMonthData2.vue

@@ -1,153 +0,0 @@
-<template>
-    <div class="lastMonth">
-        <div class="lastMonth-title"><span>上月数据</span></div>
-        <div
-            class="item"
-            v-for="(item,index) in lastMonthData"
-            :key="index"
-        >
-            <div class="item-left">
-                <img :src="item.img" />
-            </div>
-            <div class="item-right">
-                <div class="item-value">
-                    <span>{{item.value}}</span><span>{{item.unit}}</span>
-                </div>
-                <div class="item-content">
-                    <div class="item-content-left">
-                        <span
-                            class="max-value maxmin-level"
-                            :style="{background:item.maxColor}"
-                        ></span>
-                        <span
-                            class="max-min-line"
-                            :style="{ background: 'linear-gradient('+item.maxColor+',' +item.minColor+')' }"
-                        ></span>
-                        <span
-                            class="min-value maxmin-level"
-                            :style="{background:item.minColor}"
-                        ></span>
-                    </div>
-                    <div class="item-content-right">
-                        <div class="max">
-                            <span>{{item.maxName}}</span>
-                            <span>{{item.max}}</span>
-                            <span>{{item.unit}}</span>
-                        </div>
-                        <div class="min">
-                            <span>{{item.minName}}</span>
-                            <span>{{item.min}}</span>
-                            <span>{{item.unit}}</span>
-                        </div>
-                    </div>
-
-                </div>
-            </div>
-        </div>
-    </div>
-</template>
-<script>
-import icon_temp from '@/assets/icon_temp.png'
-import icon_humidity from '@/assets/icon_humidity.png'
-import icon_CO2 from '@/assets/icon_CO2.png'
-import icon_formaldehyde from '@/assets/icon_formaldehyde.png'
-import icon_PM2d5 from '@/assets/icon_PM2d5.png'
-export default {
-    name: 'lastMonthData',
-    props: {
-        screenType: {
-            type: String,
-            default: () => { return 'hor' } //hor 横屏  vert 竖屏
-        }
-    },
-    data() {
-        return {
-            lastMonthData: [
-                { id: 1, name: "温度", value: 24.5, unit: "℃", maxName: '最高温', maxColor: "#F5483D", minColor: "#7ed874", max: 26, minName: "最低温", min: 24, img: icon_temp },
-                { id: 1, name: "湿度", value: 36, unit: "%", maxColor: "#EE9F2B", minColor: "#7ed874", maxName: '最大值', max: 50, minName: "最小值", min: 20, img: icon_humidity},
-                { id: 1, name: "CO2", value: 420, unit: "ppm", maxColor: "#EFD62E", minColor: "#7ed874", maxName: '最大值', max: 630, minName: "最小值", min: 300, img: icon_CO2 },
-                { id: 1, name: "甲醛", value: 0.03, unit: "mg/m³", maxColor: "#F5483D", minColor: "#7ed874", maxName: '最大值', max: 0.01, minName: "最小值", min: 0.07, img: icon_formaldehyde },
-                { id: 1, name: "PM3d5", value: 120, unit: "ug/m³", maxColor: "#C4E34F", minColor: "#7ed874", maxName: '最大值', max: 140, minName: "最小值", min: 70, img: icon_PM2d5 },
-            ]
-        }
-    },
-    methods: {
-        // linearGraient(start,end){
-        //     return {
-        //         "border-image":linear-gradient(start,end) 0 18
-        //     }
-        // }
-    },
-}
-</script>
-<style lang="less" scoped>
-.lastMonth {
-    height: 910px;
-    width: 308px;
-    border-radius: 20px;
-    background: rgba(255, 255, 255, 0.8);
-    border: 2px solid rgba(255, 255, 255, 1);
-    padding-left: 32px;
-    color: rgba(87, 82, 113, 1);
-    .lastMonth-title {
-        font-family: PingFang SC;
-        font-size: 20px;
-        font-weight: 600;
-        line-height: 28px;
-        color: rgba(59, 53, 88, 1);
-        margin: 24px 0 0 0;
-    }
-    .item {
-         padding-top: 60px;
-        display: flex;
-        align-items: center;
-        height: 86px;
-        width: 250px;
-        .item-left {
-            width: 86px;
-            height: 86px;
-            margin-right: 20px;
-            img {
-                width: 100%;
-                height: 100%;
-            }
-        }
-        .item-value {
-            font-family: Persagy;
-            font-size: 26px;
-            font-weight: 700;
-            line-height: 31px;
-        }
-        .item-content {
-            display: flex;
-            align-items: center;
-            padding-top: 8px;
-            font-weight: 500;
-            .item-content-left {
-                display: flex;
-                flex-direction: column;
-                .max-min-line {
-                    height: 18px;
-                    width: 1px;
-                    //  background: linear-gradient(#f5483d, #7ed874);
-                    position: relative;
-                    left: 4px;
-                }
-            }
-            .maxmin-level {
-                display: inline-block;
-                height: 9px;
-                width: 9px;
-                border-radius: 50%;
-                margin-right: 8px;
-            }
-        }
-        .min {
-            padding-top: 8px;
-        }
-    }
-}
-</style>
-
-
-

+ 0 - 173
src/views/valueDelivery/HorNowData2.vue

@@ -1,173 +0,0 @@
-<template>
-    <div
-        class="NowData"
-        :class="[screenType==='hor' ? 'hor-nowData-contain' : '' ]"
-    >
-        <div class="nowData-title">
-            <span class="hor-nowData-title-text">实时数据</span>
-            <div class="normal-explain">
-                <span class="content_level title-right-icon"></span>
-                <span class="title-right">正常范围</span>
-            </div>
-        </div>
-        <span :class="[screenType==='hor' ? 'hor-nowData-title-slogan' : '' ]">主动式空调,会呼吸的写字楼</span>
-
-        <div
-            class="contain"
-            :class="[screenType==='hor' ? 'hor-contain' : 'vert-contain' ]"
-        >
-            <div
-                class="item"
-                v-for="(item, index) in horScreenImg"
-                :key="index"
-            >
-                <div class="item_content">
-                    <img
-                        :class="[screenType==='hor' ? '' : 'vert' ]"
-                        :src="item.img"
-                        alt=""
-                    >
-                    <div class="content_value">
-                        <span>{{item.value}}</span><span>{{item.unit}}</span>
-                    </div>
-                    <div class="content_name">
-                        <span>{{item.name}}</span>
-                    </div>
-                    <div
-                        class="content_level"
-                        :class="item.level"
-                    >
-                    </div>
-                </div>
-
-            </div>
-        </div>
-
-    </div>
-</template>
-<script>
-import icon_temp from '@/assets/icon_temp.png'
-import icon_humidity from '@/assets/icon_humidity.png'
-import icon_CO2 from '@/assets/icon_CO2.png'
-import icon_formaldehyde from '@/assets/icon_formaldehyde.png'
-import icon_PM2d5 from '@/assets/icon_PM2d5.png'
-export default {
-    props: {
-        screenType: {
-            type: String,
-            default: () => { return 'hor' } //hor 横屏  vert 竖屏
-        }
-    },
-    data() {
-        return {
-            horScreenImg: [
-                { id: 1, name: '温度', img:icon_temp, value: 24.5, unit: '℃', level: 'low' },
-                { id: 2, name: '湿度', img: icon_humidity, value: 33, unit: '%', level: 'middle' },
-                { id: 3, name: 'CO2', img:icon_CO2, value: 399, unit: 'ppm', level: 'low' },
-                { id: 4, name: '甲醛', img: icon_formaldehyde, value: 0.03, unit: 'mg/m³', level: 'low' },
-                { id: 5, name: 'PM2.5', img: icon_PM2d5, value: 6, unit: 'ug/m³', level: 'low' }
-            ]
-        }
-    }
-}
-</script>
-<style lang="less" scoped>
-.NowData {
-    &.hor-nowData-contain {
-        height: 498px;
-        width: 1508px;
-        border-radius: 20px;
-        background: #ffffff;
-    }
-    color: rgba(87, 82, 113, 1);
-    .nowData-title {
-        display: flex;
-        justify-content: space-between;
-        padding: 24px 32px 0 32px;
-    }
-    .hor-nowData-title-text {
-        font-family: PingFang SC;
-        font-size: 20px;
-        font-style: normal;
-        font-weight: 600;
-        line-height: 28px;
-        letter-spacing: 0px;
-        text-align: left;
-    }
-    .hor-nowData-title-slogan {
-        padding: 4px 0 0px 32px;
-    }
-    .contain {
-        display: flex;
-        &.hor-contain {
-            width: 1306px;
-            height: 280px;
-            margin-left: 101px;
-            padding-top: 46px;
-        }
-        &.vert-contain {
-        }
-    }
-    .item {
-        width: calc(100% / 5);
-        .item_content {
-            height: 100%;
-            display: flex;
-            flex-direction: column;
-            justify-content: center;
-            align-items: center;
-            text-align: center;
-            img {
-                width: 150px;
-                height: 150px;
-                &.vert {
-                    width: 130px;
-                    height: 130px;
-                }
-            }
-
-            .content_value {
-                font-family: Persagy;
-                font-size: 42px;
-                font-weight: 700;
-                line-height: 51px;
-                color: rgba(59, 53, 88, 1);
-            }
-            .content_name {
-                padding-top: 8px;
-                font-family: PingFang SC;
-                font-size: 24px;
-                font-weight: 400;
-                line-height: 34px;
-            }
-        }
-    }
-    .content_level {
-        padding-top: 8px;
-        box-sizing: border-box;
-        width: 16px;
-        height: 16px;
-        border-radius: 50%;
-        background: rgba(126, 216, 116, 1);
-        &.middle {
-            background: rgba(239, 214, 46, 1);
-        }
-        &.title-right-icon {
-            display: inline-block;
-            padding: 0;
-            width: 12px;
-            height: 12px;
-        }
-        &.title-right {
-            height: 20px;
-            width: 56px;
-        }
-    }
-    .normal-explain {
-        display: flex;
-        align-items: center;
-    }
-}
-</style>
-
-

+ 6 - 5
src/views/valueDelivery/LastMonthData.vue

@@ -95,16 +95,17 @@ export default {
     watch: {
         lastDataArr(newv,oldv) {
             //debugger;
-            console.log('watch-lastDataArr',newv,oldv);
+       
         },
     },
+    destroyed(){
+        console.log("lastMonthData---destroyed");
+    },
     computed: {
         ...mapState({
-            lastDataArr(state) {//state改变调用
+            lastDataArr(state) {//state改变调用  通过state.lastMonthData的值 生成新的值
                 var statecopu=JSON.parse(JSON.stringify(state))  ;
-                console.log('lastDataArr',statecopu);
-                console.log('lastDataArr-state-realTimeData',state.realTimeData);
-                 console.log('lastDataArr-state',state);
+                //console.log('lastDataArr',statecopu);
                 var lastMonthData = state.lastMonthData;
                 var lastMonthInit = [
                     {

+ 0 - 201
src/views/valueDelivery/TemChart copy.vue

@@ -1,201 +0,0 @@
-<template>
-    <div
-        class="temChart"
-        :class="[screenType==='hor' ? 'hor-nowData-contain' : 'verticalClass verticalTemChart' ]"
-    >
-        <div class="head-title">
-            <span>实时温度</span>
-            <div class="rightVal">
-                室外温度<span>28</span>℃
-            </div>
-        </div>
-        <div
-            id="tempChartBox"
-            class="tempChartBox"
-        ></div>
-    </div>
-</template>
-<script>
-//import G2 from '@antv/g2';
-import { Chart } from '@antv/g2';
-
-export default {
-    name: "TemChart",
-    props: {
-        screenType: {
-            type: String,
-            default: () => { return 'ver' } //hor 横屏  vert 竖屏
-        }
-    },
-    created() {
-        console.log("created");
-    },
-    mounted() {
-        console.log("mounted");
-        this.cInitChart();
-    },
-    data() {
-        return {
-
-        }
-    },
-    methods: {
-        cInitChart() {
-            var data = [
-                { Date: '8', type: '订阅数', value: 23.5 },
-                { Date: '9', type: '订阅数', value: 26.5 },
-                { Date: '10', type: '订阅数', value: 29.5 },
-                { Date: '11', type: '订阅数', value: 30.5 },
-                { Date: '12', type: '订阅数', value: 26.5 },
-                { Date: '13', type: '订阅数', value: 29.5 },
-                { Date: '14', type: '订阅数', value: 30.5 },
-                { Date: '15', type: '订阅数', value: 33.5 },
-                { Date: '16', type: '订阅数', value: 34.5 },
-                { Date: '17', type: '订阅数', value: 30.5 },
-            ];
-            var chart = new Chart({
-                container: 'tempChartBox',
-                forceFit: true,
-                width: 1000,
-                height: 330,
-                padding: [50, 40, 46, 60],
-            });
-            chart.data(data);
-
-            chart.scale('Date', {
-                //range: [0, 1],
-                //tickCount: 2,
-                //tickInterval
-                // type: 'timeCat'
-            });
-            chart.scale('value', {
-                sale: {
-                    min: 20,
-                    max: 100,
-                    minLimit:20,
-                    base:20
-                },
-                type: 'linear'
-                //range: [0, 1],
-                //tickCount: 5,
-                //tickInterval
-                // type: 'timeCat'
-            });
-            chart.axis('Date', {
-                // line: {
-                //     style: {
-                //         lineWidth: 1, // 设置线的宽度
-                //         stroke: '#D5D5DE', // 设置线的颜色
-                //         lineDash: [3, 3] // 设置虚线样式
-                //     }
-                // },
-                line: false,
-                label: {
-                    style: {
-                        fill: '#9B98AD',
-                        fontSize: 12,
-                    }
-                },
-                tickLine: null
-            });
-            chart.axis('value', {
-                tickLine: null,
-                grid: {
-                    line: {
-                        style: {
-                            lineWidth: 1, // 设置线的宽度
-                            stroke: '#D5D5DE', // 设置线的颜色
-                            lineDash: [3, 3] // 设置虚线样式
-                        }
-
-                    }
-                },
-                label: {
-                    style: {
-                        fill: '#9B98AD',
-                        fontSize: 12,
-                    },
-                    // formatter: function formatter(text) {
-                    //     return text;
-                    // }
-                }
-            });
-            chart.tooltip({
-                crosshairs: 'y'
-            });
-            chart.legend(false);
-            //view1
-            // var view1 = chart.view();
-            // view1.source(dv2);
-            // view1.axis(false);
-            // view1.area().position('Date*value').color('#8d8d8d').opacity(0.1).tooltip(false);
-            //view1
-            //var view1 = chart.view();
-
-            chart.line().position('Date*value').color('#23CCF9').shape('smooth').style({
-                lineWidth: 3,
-
-            });
-            chart.point().position('Date*value').color('#23CCF9').shape('circle').style({
-                lineWidth: 1,
-                stroke: '#ffffff',
-            });
-            chart.area().position('Date*value').color('l(90) 0:#23CCF9 1:#ffffff').tooltip(false).shape('smooth');
-
-            // chart.guide().text({
-            //     top: false,
-            //     limitInPlot: true,
-            //     position: ['max', 'min'], // 文本的起始位置,值为原始数据值,支持 callback
-            //     content: '时间/时分', // 显示的文本内容
-            //     style: {
-            //         fill: '#9590AD', // 文本颜色
-            //         fontSize: '12' // 文本大小
-            //         // fontWeight: 'bold' // 文本粗细
-            //         // rotate: Math.PI / 4 // 文本旋转,以弧度为单位
-            //     }, // 文本的图形样式属性
-            //     offsetX: 16, // x 方向的偏移量
-            //     offsetY: 16 // y 方向偏移量
-            // });
-            // chart.guide().text({
-            //     // position: ['min', 'max'], // 文本的起始位置,值为原始数据值,支持 callback
-            //     position: function (xScale, yScale) {
-            //         console.log('position', xScale, yScale);
-            //         return ['0%', '0%'];
-            //     },
-            //     content: '温度/℃', // 显示的文本内容
-            //     style: {
-            //         fill: '#9590AD', // 文本颜色
-            //         fontSize: '12' // 文本大小
-            //         // fontWeight: 'bold' // 文本粗细
-            //         // rotate: Math.PI / 4 // 文本旋转,以弧度为单位
-            //     }, // 文本的图形样式属性
-            //     offsetX: -40, // x 方向的偏移量
-            //     offsetY: -24// y 方向偏移量
-            // });
-            chart.render();
-            return chart;
-        }
-    }
-}
-</script>
-<style lang="less" scoped>
-@import "/src/assets/css/common.less";
-.verticalTemChart {
-    padding: 24px 0 0 !important;
-    .head-title {
-        justify-content: space-between;
-        padding: 0 32px;
-        .rightVal {
-            color: #39354e;
-            font-size: 14px;
-            font-weight: normal;
-        }
-    }
-    .tempChartBox {
-        width: 1000px;
-        height: 330px;
-    }
-}
-</style>
-
-

+ 32 - 24
src/views/valueDelivery/TemChart.vue

@@ -14,12 +14,12 @@
                 >℃
             </div>
         </div>
-        <div id="tempChartBox" class="tempChartBox"></div>
+        <div id="tempChartBox" class="tempChartBox" ref="tempChartBox"></div>
     </div>
 </template>
 <script>
 import G2 from "@antv/g2";
-import { mapActions } from "vuex";
+import { mapState, mapActions } from "vuex";
 import moment from "moment";
 export default {
     name: "TemChart",
@@ -31,11 +31,9 @@ export default {
             }, //hor 横屏  vert 竖屏
         },
     },
-    created() {
-        console.log("created");
-    },
+    created() {},
     mounted() {
-        console.log("mounted");
+        //console.log("temchart--mounted");
         this.getRealTimeTemp().then((res) => {
             //debugger;
             var cdata = res.data.data || [];
@@ -46,13 +44,19 @@ export default {
                 element.time = hour + ":" + minute;
             });
             this.cInitChart(cdata);
-            this.getWeahter();
+            //this.getWeahter();
         });
     },
     data() {
-        return {
-            temperature: null,
-        };
+        return {};
+    },
+    computed: {
+        ...mapState({
+            temperature: (state) => {
+                var weatherCont = state.weatherCont;
+                return weatherCont.temperature;
+            },
+        }),
     },
     methods: {
         ...mapActions(["getRealTimeTemp"]),
@@ -69,9 +73,16 @@ export default {
             //     { time: "16", type: "温度", temp: 34.5 },
             //     { time: "17", type: "温度", temp: 30.5 },
             // ];
+            //var width = this.$refs.tempChartBox.clientWidth;
+            //debugger;
+            var width =
+                this.screenType === "hor"
+                    ? document.getElementsByTagName("body")[0].offsetWidth - 874
+                    : document.getElementsByTagName("body")[0].offsetWidth - 80;
             var chart = new G2.Chart({
                 container: "tempChartBox",
-                forceFit: true,
+               // forceFit: true,
+                width: width,
                 height: 330,
                 padding: [50, 50, 46, 60],
             });
@@ -117,9 +128,9 @@ export default {
                     // }
                 },
             });
-            chart.tooltip({
-                crosshairs: "y",
-            });
+            // chart.tooltip({
+            //     crosshairs: "y",
+            // });
             chart.legend(false);
             //view1
             // var view1 = chart.view();
@@ -169,8 +180,12 @@ export default {
                 .shape("smooth");
             var lastpoint = cdata[cdata.length - 1];
             const tooltipHtml = `<div style='line-height:22px;color:#fff;background: rgba(35,204,249,0.7);padding:10px 12px;border-radius:5px;'>
-                <div style='font-size:13px;font-weight:400;'>${lastpoint.time}</div>
-                <div style='font-size:12px;font-weight:600;'>室内温度:${lastpoint.temp}℃</div></div>`;
+                <div style='font-size:13px;font-weight:400;'>${
+                    lastpoint.time
+                }</div>
+                <div style='font-size:12px;font-weight:600;'>室内温度:${lastpoint.temp.toFixed(
+                    1
+                )}℃</div></div>`;
             chart.guide().html({
                 position: lastpoint,
                 html: tooltipHtml,
@@ -195,7 +210,7 @@ export default {
             chart.guide().text({
                 // position: ['min', 'max'], // 文本的起始位置,值为原始数据值,支持 callback
                 position: function(xScale, yScale) {
-                    console.log("position", xScale, yScale);
+                    //console.log("position", xScale, yScale);
                     return ["0%", "0%"];
                 },
                 content: "温度/℃", // 显示的文本内容
@@ -211,13 +226,6 @@ export default {
             chart.render();
             return chart;
         },
-        getWeahter() {
-            this.$axios
-                .get(this.$api.getWeatherCurrent + "?projectId=Pj1101020002")
-                .then((res) => {
-                    this.temperature = res.data.content.temperature;
-                });
-        },
     },
 };
 </script>

+ 12 - 35
src/views/valueDelivery/lastEnergyChart.vue

@@ -10,7 +10,7 @@
         <div class="head-title">
             <span>上月每日能耗</span>
         </div>
-        <div id="lastChartBox" class="lastChartBox"></div>
+        <div id="lastChartBox" class="lastChartBox" ref="lastChartBox"></div>
         <!-- <div id="slider"></div> -->
     </div>
 </template>
@@ -53,11 +53,8 @@ export default {
             }, //hor 横屏  vert 竖屏
         },
     },
-    created() {
-        console.log("created");
-    },
+    created() {},
     mounted() {
-        console.log("mounted");
         this.queryLastDayEnergy();
     },
     data() {
@@ -77,7 +74,7 @@ export default {
                 .endOf("month")
                 .format("YYYYMMDD");
 
-            console.log("start", start);
+            //console.log("start", start);
             this.$axios
                 .post(this.$api.queryLastDayEnergy, {
                     criteria: {
@@ -114,11 +111,9 @@ export default {
                         .subtract(1, "months")
                         .date(12);
                     var end2 = moment().subtract(1, "months");
-                    //debugger;
 
                     // console.log("start", start);
-                    console.log("start", chart);
-                    console.log("start", this.ds);
+
                     // var intervalInt = setInterval(() => {
                     //     start.add(1, "days");
                     //     end.add(1, "days");
@@ -141,31 +136,7 @@ export default {
             // var data = [
             //     { Date: "2021-08-01", type: "订阅数", value: 1300 },
             //     { Date: "2021-08-02", type: "订阅数", value: 1200 },
-            //     { Date: "2021-08-03", type: "订阅数", value: 1350 },
-            //     { Date: "2021-08-04", type: "订阅数", value: 1100 },
-            //     { Date: "2021-08-05", type: "订阅数", value: 1005 },
-            //     { Date: "2021-08-06", type: "订阅数", value: 1200 },
-            //     { Date: "2021-08-07", type: "订阅数", value: 1100 },
-            //     { Date: "2021-08-08", type: "订阅数", value: 1100 },
-            //     { Date: "2021-08-09", type: "订阅数", value: 1200 },
-            //     { Date: "2021-08-10", type: "订阅数", value: 900 },
-            //     { Date: "2021-08-11", type: "订阅数", value: 800 },
-            //     { Date: "2021-08-12", type: "订阅数", value: 970 },
-            //     { Date: "2021-08-13", type: "订阅数", value: 1100 },
-            //     { Date: "2021-08-14", type: "订阅数", value: 1100 },
-            //     { Date: "2021-08-15", type: "订阅数", value: 1005 },
-            //     { Date: "2021-08-16", type: "订阅数", value: 1200 },
-            //     { Date: "2021-08-17", type: "订阅数", value: 1100 },
-            //     { Date: "2021-08-18", type: "订阅数", value: 1100 },
-            //     { Date: "2021-08-19", type: "订阅数", value: 1200 },
-            //     { Date: "2021-08-20", type: "订阅数", value: 900 },
-            //     { Date: "2021-08-21", type: "订阅数", value: 800 },
-            //     { Date: "2021-08-22", type: "订阅数", value: 970 },
-            //     { Date: "2021-08-23", type: "订阅数", value: 1100 },
-            //     { Date: "2021-08-24", type: "订阅数", value: 1100 },
-            //     { Date: "2021-08-25", type: "订阅数", value: 1005 },
-            //     { Date: "2021-08-26", type: "订阅数", value: 1200 },
-            //     { Date: "2021-08-27", type: "订阅数", value: 1100 },
+
             //     { Date: "2021-08-28", type: "订阅数", value: 1100 },
             //     { Date: "2021-08-29", type: "订阅数", value: 1200 },
             //     { Date: "2021-08-30", type: "订阅数", value: 1200 },
@@ -185,9 +156,15 @@ export default {
                     return date <= ds.state.end && date >= ds.state.start;
                 },
             });
+            // var width = this.$refs.lastChartBox.clientWidth;
+            var width =
+                document.getElementsByTagName("body")[0].offsetWidth - 80;
+            // debugger;
+            //console.log("lastenergychart-width", width);
             var chart = new G2.Chart({
                 container: "lastChartBox",
-                forceFit: true,
+                //forceFit: true,
+                width: width,
                 height: this.screenType === "hor" ? 274 : 330,
                 padding: [20, 20, 36, 20],
             });

+ 43 - 24
src/views/valueDelivery/pageHead.vue

@@ -1,10 +1,7 @@
 <template>
     <div class="horHead horSty">
         <div class="horHead-left">
-            <img
-                :src="logo"
-                alt=""
-            >
+            <img :src="logo" alt="" />
         </div>
         <div class="horHead-content">
             <img :src="title" />
@@ -12,29 +9,18 @@
         <div class="horHead-right">
             <div class="right-item">
                 <span class="item-time"> 2021.07.26 11:00</span>
-
             </div>
             <div class="right-item">
-                
+                {{ weatherText }}
             </div>
-            <div
-                class="right-item"
-                style="display:none"
-            >
+            <div class="right-item" @click="changeScreen">
                 <img
                     class="firstImg"
-                    :src="changeVer"
-                    alt=""
-                >
-                <img
-                    :src="shrink"
+                    :src="nowScreen == 'vertical' ? changeHor : changeVer"
                     alt=""
-                >
+                />
             </div>
-            <div
-                class="right-item"
-                style="display:none"
-            >
+            <div class="right-item" style="display:none">
                 退出
             </div>
         </div>
@@ -48,16 +34,50 @@ declare function require(img: string): string;
 const persagyLogo = require("@/assets/horImg/persagyLogo.png");
 const title = require("@/assets/horImg/hor_title.png");
 const changeVer = require("@/assets/horImg/changeVer.png");
-const shrink = require("@/assets/horImg/shrink.png");
+const changeHor = require("@/assets/horImg/changeHor.png");
+import { mapState } from "vuex";
 export default Vue.extend({
     data() {
         return {
             logo: persagyLogo,
             title: title,
             changeVer: changeVer,
-            shrink: shrink,
+            changeHor: changeHor,
+            nowScreen: "vertical",
+            // weatherText:''
         };
     },
+    mounted() {
+        // console.log("route", this.$route);
+        // console.log("router", this.$router);
+        var path = this.$route.path;
+        if (path.indexOf("horizontalScreen")>-1) {
+            this.nowScreen = "horizontal";
+        } else if (path.indexOf("verticalScreen")>-1) {
+            this.nowScreen = "vertical";
+        }
+        
+    },
+    computed: {
+        ...mapState({
+            weatherText(state: any) {
+                //debugger;
+                var text = state.weatherCont.text;
+                return text;
+            },
+        }),
+    },
+    methods: {
+        changeScreen() {
+            if (this.nowScreen == "vertical") {
+                this.nowScreen = "horizontal";
+                this.$router.push({ name: "horizontalScreen" });
+            } else {
+                this.nowScreen = "vertical";
+                this.$router.push({ name: "verticalScreen" });
+            }
+        },
+    },
 });
 </script>
 
@@ -79,7 +99,7 @@ export default Vue.extend({
             display: flex;
             justify-content: center;
             align-items: center;
-
+            cursor: pointer;
             padding: 12px 16px;
             font-size: 16px;
             color: #575271;
@@ -101,4 +121,3 @@ export default Vue.extend({
     }
 }
 </style>
-

+ 21 - 6
src/views/verticalScreen.vue

@@ -3,13 +3,14 @@
         <div class="pageHead">
             <pageHead />
         </div>
-        <div style="display:none">
+        <div v-show="nowPage == 1">
             <NowData screenType="ver" />
             <AirSwitchVer />
             <TemChart screenType="ver" />
             <LastMonthData screenType="ver" />
         </div>
-        <div>
+        <FloorSpace v-show="nowPage == 2" />
+        <div v-show="nowPage == 3">
             <div class="lastTotalEnergy verticalClass">
                 <div class="head-title">
                     <span>上月总能耗</span>
@@ -32,7 +33,6 @@
             <lastSaveEnergy screenType="ver" />
             <lastEnergyChart />
         </div>
-        <FloorSpace style="display:none" />
     </div>
 </template>
 <script>
@@ -57,13 +57,28 @@ export default {
         pageHead,
     },
     data() {
-        return {};
+        return {
+            nowPage: 1,
+        };
+    },
+    mounted() {
+        // setInterval(() => {
+        //     console.log("verticalScreen-setInterval", this.nowPage);
+        //     //debugger;
+        //     this.nowPage = this.nowPage + 1;
+        //     if (this.nowPage == 4) {
+        //         this.nowPage = 1;
+        //     }
+        // }, 6000);
     },
     computed: {
         ...mapState({
             lastAllEnergy: (state) => {
-               // debugger;
-                var lastAllEnergy = state.lastAllEnergy;
+                // debugger;
+                var lastAllEnergy = JSON.parse(
+                    JSON.stringify(state.lastAllEnergy)
+                );
+
                 lastAllEnergy.energyCompare = Number(
                     (lastAllEnergy.energyCompare * 100).toFixed(0)
                 );