Browse Source

开发修改

zhaojijng 3 years ago
parent
commit
159c50687b

File diff suppressed because it is too large
+ 734 - 413
package-lock.json


+ 12 - 1
src/App.vue

@@ -24,14 +24,25 @@ export default {
 </script>
 
 <style lang="less">
+html{
+    height: 100%;
+}
+body{
+    overflow-x: hidden;
+    margin:0;
+    padding:0;
+    height: 100%;
+}
 #app {
     font-family: Avenir, Helvetica, Arial, sans-serif;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
-    background: #f3fdff;
+     height: 100%;
+    // background: #f3fdff;
     //   text-align: center;
     //   color: #2c3e50;
     //   margin-top: 60px;
+  
 }
 @import "/src/assets/css/common.less";
 </style>

+ 32 - 10
src/views/horizontalScreen.vue

@@ -27,7 +27,7 @@
                 </div>
             </div>
             <div class="hor-nowData-content" v-show="nowPage == 2">
-                <horFloorSpace />
+                <horFloorSpace :showPing="nowPage" @donetowpage="doneTowPage" />
             </div>
             <div class="hor-nowData-content secondScreen" v-show="nowPage == 3">
                 <div class="flexBetween">
@@ -93,18 +93,34 @@ export default {
             bgImg: hor_big_bg,
             lastMonthTotal: require("@/assets/horImg/hor_lastMonthTotal.png"),
             nowPage: 2,
+            horiInterval: null,
         };
     },
     mounted() {
-       // debugger;
-        // setInterval(() => {
-        //     console.log("horizontalScreen-setInterval", this.nowPage);
-        //     //debugger;
-        //     this.nowPage = this.nowPage + 1;
-        //     if (this.nowPage == 4) {
-        //         this.nowPage = 1;
-        //     }
-        // }, 6000);
+         //this.timePageShow();
+    },
+    methods: {
+        doneTowPage() {
+            //第二屏刷新结束 通知
+            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({
@@ -125,12 +141,18 @@ export default {
 <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;

+ 4 - 4
src/views/valueDelivery/AirSwitchVer.vue

@@ -2,14 +2,14 @@
     <div class="airSwitch verticalClass">
         <div class="air-title head-title">
             <span>空调实时开关</span>
-            <span class="status">{{
-                airStatus ? "空调已开启" : "空调已关闭"
-            }}</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"></div>
+                    <div class="bar" v-bind:style="{width:airValue+'%'}"></div>
                 </div>
                 <div class="air-rate">
                     <span>空调开启率</span>

+ 63 - 35
src/views/valueDelivery/FloorSpace.vue

@@ -45,7 +45,7 @@
                             v-bind:style="{
                                 backgroundColor: selectColor(
                                     childItem.avgValues,
-                                    selIndicator.id,
+                                    selIndicatorId,
                                     true
                                 ),
                             }"
@@ -68,8 +68,8 @@ export default {
     data() {
         return {
             selIndicator: {},
+            selIndicatorId: "", //为了颜色
             nowIndicatorIndex: null, //现在选中的指标 index
-
             allIndicator: [
                 {
                     id: "temp",
@@ -112,39 +112,68 @@ export default {
             firstPageParams: [],
             secondPageParams: [],
             nowPage: 1, //当前哪一屏幕
+            pageNum: 0, //总页数 楼层一共几页
             showFloors: [],
         };
     },
-    watch: {
-        nowIndicatorIndex(newv, oldv) {
-            // debugger;
-            if (newv == oldv) return;
-            this.selIndicator = this.allIndicator[newv];
-            this.showFloors = [];
-            //第一屏的参数 第二屏的参数
-            var floorparam =
-                this.nowPage == 1
-                    ? this.firstPageParams
-                    : this.secondPageParams;
-            this.queryParam(floorparam);
+    props: {
+        showPing: {
+            type: Number,
+            default: () => {
+                return 0;
+            },
         },
     },
-    mounted() {
-        this.queryFs();
+    watch: {
+        showPing(newv, oldv) {
+            //debugger;
+            //当前屏幕第几屏
+            if (newv == 2) {
+                this.nowPage = 1;
+                this.queryFs();
+            }
+        },
     },
+    mounted() {},
     methods: {
         selectColor: selectColor,
         clickIndicator(index) {
             this.nowIndicatorIndex = index;
         },
+        getTimeFloorParam() {
+            //第一屏的参数 第二屏的参数
+            var floorparam =
+                this.nowPage == 1
+                    ? this.firstPageParams
+                    : this.secondPageParams;
+            var _this = this;
+            this.queryParam(floorparam).then(() => {
+                var timeoutsign = setTimeout(() => {
+                    _this.nowIndicatorIndex = _this.nowIndicatorIndex + 1;
+                    if (_this.nowIndicatorIndex == 5) {
+                        if (_this.pageNum == _this.nowPage) {
+                            _this.nowIndicatorIndex = 0;
+                            _this.$emit("donetowpage");
+                            clearTimeout(timeoutsign);
+                            return;
+                        }
+                        if (_this.pageNum == 2 && _this.nowPage == 1) {
+                            _this.nowPage = 2;
+                            _this.nowIndicatorIndex = 0;
+                        }
+                    }
+                    this.getTimeFloorParam();
+                }, 2000);
+            });
+        },
         queryFs() {
-           // var loading = this.$loading({ fullscreen: true });
+            // var loading = this.$loading({ fullscreen: true });
             this.$axios
                 .post(this.$api.queryFs, {
                     criteria: {
                         projectId: "Pj1101020002",
                     },
-                    size: 14,//最多14层
+                    size: 14, //最多14层
                     page: 1,
                     orders: [
                         {
@@ -153,9 +182,9 @@ export default {
                         },
                     ],
                 })
-                .then((res) => {     
+                .then((res) => {
                     //loading.close();
-              
+
                     var allFloor = res.data.content || [];
                     allFloor = allFloor.filter(function(item) {
                         return item.spaceNum > 0;
@@ -168,13 +197,13 @@ export default {
                     if (allFloorNum <= 7) {
                         firstPageNum = allFloorNum;
                         secondPageNum = 0;
+                        this.pageNum = 1;
                     } else {
                         firstPageNum = Math.ceil(allFloorNum / 2);
                         secondPageNum = Math.floor(allFloorNum / 2);
+                        this.pageNum = 2;
                     }
 
-                    this.nowPage = 1; //取第一屏
-
                     var firstMaxSpace = this.floorHandle(firstPageNum); //第一屏 一层最多空间
                     var sendMaxSpace = this.floorHandle(secondPageNum);
                     var firstPageFloors = allFloor.slice(0, firstPageNum); //第一屏 所有楼层
@@ -196,13 +225,10 @@ export default {
                         return obj;
                     });
                     this.nowIndicatorIndex = 0;
-                    var floorparam =
-                        this.nowPage == 1
-                            ? this.firstPageParams
-                            : this.secondPageParams;
-                    this.queryParam(floorparam);
-                }).catch((res) =>{
-                     // loading.close();
+                    this.getTimeFloorParam();
+                })
+                .catch((res) => {
+                    // loading.close();
                 });
         },
 
@@ -213,21 +239,23 @@ export default {
             // RH 湿度
             // HCHO甲醛
             // PM2d5 pm2.5
-
+            
             var endTime = moment();
-            var startTime = moment().subtract(15, "minutes");
+            var startTime = moment().subtract(30, "minutes");
             var startStr = startTime.format("YYYYMMDDHHmmss");
             var endStr = endTime.format("YYYYMMDDHHmmss");
-
+            var newv = this.nowIndicatorIndex;
+            //debugger;
+            this.selIndicator = this.allIndicator[newv];
             var param = this.selIndicator.code;
-            this.$axios
+            return this.$axios
                 .post(
                     `${this.$api.queryParam}?endTime=${endStr}&startTime=${startStr}&param=${param}`,
                     floorparam
                 )
                 .then((res) => {
                     //loading.close();
-                   
+
                     var showFloors = res.data.content || [];
                     showFloors.forEach((ele) => {
                         var filterFloorarr = this.allFloor.filter((item) => {
@@ -243,7 +271,7 @@ export default {
                         ele.spacewidth = 100 / lineNum;
                     });
                     this.showFloors = showFloors;
-                   
+                    this.selIndicatorId = this.selIndicator.id;
                 });
         },
         floorHandle(floorNum) {

+ 61 - 24
src/views/valueDelivery/HorFloorSpace.vue

@@ -97,34 +97,67 @@ export default {
             firstPageParams: [],
             secondPageParams: [],
             nowPage: 1, //当前哪一屏幕
-
+            pageNum:0,
             showFloors: [],
         }
     },
-    watch: {
-        nowIndicatorIndex(newv, oldv) {
-            // debugger;
-            if (newv == oldv) return;
-            this.selIndicator = this.allIndicator[newv];
-           // this.showFloors =[];
-            //第一屏的参数 第二屏的参数
-            var floorparam =
-                this.nowPage == 1
-                    ? this.firstPageParams
-                    : this.secondPageParams;
-            this.queryParam(floorparam);
+    props: {
+        showPing: {
+            type: Number,
+            default: () => {
+                return 0;
+            }, 
         },
     },
+    watch:{
+        showPing(newv,oldv){
+           debugger;
+            if(newv==2){
+                   this.nowPage = 1;
+                   this.queryFs();
+            }
+        }
+    },
     mounted() {
-       // this.selIndicator = this.allIndicator[0];
-         this.queryFs();
+        
+    },
+    destroyed(){
+        console.log("horfloorspace---destroyed");
     },
     methods: {
         selectColor:selectColor,
         clickIndicator(index) {
             this.nowIndicatorIndex = index;
         },
-         queryFs() {
+        getTimeFloorParam() {
+            //第一屏的参数 第二屏的参数
+            var floorparam =
+                this.nowPage == 1
+                    ? this.firstPageParams
+                    : this.secondPageParams;
+            var _this = this;
+            this.queryParam(floorparam).then(() => {
+                var timeoutsign = setTimeout(() => {
+                    _this.nowIndicatorIndex = _this.nowIndicatorIndex + 1;
+                    if (_this.nowIndicatorIndex == 5) {
+                        //debugger;
+                         if (_this.pageNum == _this.nowPage) {
+                             _this.nowIndicatorIndex = 0;
+                             _this.$emit('donetowpage');
+                           // clearTimeout(timeoutsign);
+                            return;
+                        }
+                        if (_this.pageNum == 2 && _this.nowPage == 1) {
+                            _this.nowPage = 2;
+                            _this.nowIndicatorIndex = 0;
+                        }
+                       
+                    }
+                    this.getTimeFloorParam();
+                }, 2000);
+            });
+        },
+        queryFs() {
             //var loading = this.$loading({ fullscreen: true });
             this.$axios
                 .post(this.$api.queryFs, {
@@ -142,7 +175,6 @@ export default {
                 })
                 .then((res) => {
                    // loading.close();
-                    //console.log("queryFs", res);
                     var allFloor = res.data.content || [];
                     allFloor = allFloor.filter(function(item) {
                         return item.spaceNum > 0;
@@ -155,9 +187,11 @@ export default {
                     if (allFloorNum <= 7) {
                         firstPageNum = allFloorNum;
                         secondPageNum = 0;
+                        this.pageNum=1;
                     } else {
                         firstPageNum = Math.ceil(allFloorNum / 2);
                         secondPageNum = Math.floor(allFloorNum / 2);
+                        this.pageNum=2;
                     }
 
                     var firstMaxSpace = this.floorHandle(firstPageNum); //第一屏 一层最多空间
@@ -180,9 +214,10 @@ export default {
                         obj.spaceNum = sendMaxSpace;
                         return obj;
                     });
-                    
+                  
                 
                     this.nowIndicatorIndex=0;
+                    this.getTimeFloorParam();
                 }).catch(function(res){
                    // loading.close();
                 });
@@ -191,11 +226,13 @@ export default {
             //var loading = this.$loading({ fullscreen: true });
 
             var endTime = moment();
-            var startTime = moment().subtract(15, "minutes");//往前取15分钟
+            var startTime = moment().subtract(30, "minutes");//往前取15分钟
             var startStr = startTime.format("YYYYMMDDHHmmss");
             var endStr = endTime.format("YYYYMMDDHHmmss");
+            var newv=this.nowIndicatorIndex;
+            this.selIndicator = this.allIndicator[newv];
             var param = this.selIndicator.code;
-            this.$axios
+          return  this.$axios
                 .post(
                     `${this.$api.queryParam}?endTime=${endStr}&startTime=${startStr}&param=${param}`,
                     floorparam
@@ -214,13 +251,12 @@ export default {
                         ele.localName = filterFloor.localName;
                         var dataSpacesNum = ele.dataSpaces.length;//一层的空间数
                         var lineNum = this.spaceHandle(dataSpacesNum,showFloors.length) ; //一行的个数
-                        //debugger;
+                      
                         ele.spacewidth = 100 / lineNum;
                     });
                     this.showFloors = showFloors;
                     this.selIndicatorId=this.selIndicator.id;
-                    //console.log('showFloors',showFloors);
-                });
+                }).catch((err)=>{});
         },
         spaceHandle(spaceNum,floorNum){//返回一层 的每一行 几个房间
             var lineNum = spaceNum; //一行的房间数
@@ -283,13 +319,14 @@ export default {
 <style lang="less" scoped>
 .floorSpace {
     width: 100%;
-    height: 910px;
+    // height: 910px;
     display: flex;
 }
 .leftChange {
     height: 100%;
     width: 154px;
     margin: 0 auto;
+    min-height: 700px;
     background: #ffffff;
     .allIndicator {
         padding-top: 32px;

+ 2 - 1
src/views/valueDelivery/TemChart.vue

@@ -191,7 +191,8 @@ export default {
                 html: tooltipHtml,
                 alignX: "right",
                 alignY: "bottom",
-                offsetX: 10,
+                offsetX: 60,
+                offsetY: -5,
             });
             chart.guide().text({
                 top: false,

+ 57 - 39
src/views/valueDelivery/lastEnergyChart.vue

@@ -52,16 +52,32 @@ export default {
                 return "ver";
             }, //hor 横屏  vert 竖屏
         },
+        showPing: {
+            type: Number,
+            default: () => {
+                return 0;
+            },
+        },
     },
     created() {},
-    mounted() {
-        this.queryLastDayEnergy();
-    },
+    mounted() {},
     data() {
         return {
             ds: null,
+            lastChart: null,
         };
     },
+    watch: {
+        showPing(newv, oldv) {
+            if (newv == 3) {
+                if (!this.lastChart) {
+                    this.queryLastDayEnergy();
+                } else {
+                    this.setChartInterval();
+                }
+            }
+        },
+    },
     methods: {
         queryLastDayEnergy() {
             //上月每日能耗
@@ -103,49 +119,54 @@ export default {
                             item.energyLight
                         ).toFixed(0);
                     });
-                    var chart = this.cInitChart(resdata);
-                    var start = moment()
-                        .subtract(1, "months")
-                        .date(1);
-                    var end = moment()
-                        .subtract(1, "months")
-                        .date(12);
-                    var end2 = moment().subtract(1, "months");
-
-                    // console.log("start", start);
+                    this.lastChart = this.cInitChart(resdata);
+                    this.setChartInterval();
+                });
+        },
+        setChartInterval() {
+            if (this.screenType == "ver") {
+                //上个月
+                var start = moment()
+                    .subtract(1, "months")
+                    .date(1);
+                var end = moment()
+                    .subtract(1, "months")
+                    .date(12);
+                var end2 = moment().subtract(1, "months");
+                var intervalInt = setInterval(() => {
+                    start.add(1, "days");
+                    end.add(1, "days");
+                    //debugger;
+                    //console.log("start--", chart);
+                    //console.log("end--", _this.ds);
 
-                    // var intervalInt = setInterval(() => {
-                    //     start.add(1, "days");
-                    //     end.add(1, "days");
-                    //     //debugger;
-                    //     console.log("start--", start);
-                    //     console.log("end--", end);
-                    //     this.ds.setState("start", start.format("YYYY-MM-DD"));
-                    //     this.ds.setState("end", end.format("YYYY-MM-DD"));
+                    this.ds.setState("start", start.format("YYYY-MM-DD"));
+                    this.ds.setState("end", end.format("YYYY-MM-DD"));
 
-                    //     if (
-                    //         end.format("YYYY-MM-DD") ==
-                    //         end2.endOf("month").format("YYYY-MM-DD")
-                    //     ) {
-                    //         clearInterval(intervalInt);
-                    //     }
-                    // }, 800);
-                });
+                    if (
+                        end.format("YYYY-MM-DD") ==
+                        end2.endOf("month").format("YYYY-MM-DD")
+                    ) {
+                        clearInterval(intervalInt);
+                        this.$emit("donethreepage");
+                    }
+                }, 800);
+            }
         },
         cInitChart(cdata) {
             // var data = [
             //     { Date: "2021-08-01", type: "订阅数", value: 1300 },
-            //     { Date: "2021-08-02", type: "订阅数", value: 1200 },
-
-            //     { Date: "2021-08-28", type: "订阅数", value: 1100 },
-            //     { Date: "2021-08-29", type: "订阅数", value: 1200 },
-            //     { Date: "2021-08-30", type: "订阅数", value: 1200 },
             // ];
-            //debugger;
+
+            if (this.screenType == "hor") {
+                var end = cdata[cdata.length - 1].Date;
+            } else {
+                var end = cdata[11].Date;
+            }
             var ds = new DataSet({
                 state: {
                     start: cdata[0].Date,
-                    end: cdata[11].Date,
+                    end: end,
                 },
             });
             var dv = ds.createView();
@@ -156,11 +177,8 @@ 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,

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

@@ -62,7 +62,7 @@ export default Vue.extend({
         ...mapState({
             weatherText(state: any) {
                 //debugger;
-                var text = state.weatherCont.text;
+                var text = state.weatherCont.text||'晴';
                 return text;
             },
         }),

+ 32 - 10
src/views/verticalScreen.vue

@@ -9,7 +9,9 @@
             <TemChart screenType="ver" />
             <LastMonthData screenType="ver" />
         </div>
-        <FloorSpace v-show="nowPage == 2" />
+        <div v-show="nowPage == 2">
+            <FloorSpace :showPing="nowPage" @donetowpage="doneTowPage" />
+        </div>
         <div v-show="nowPage == 3">
             <div class="lastTotalEnergy verticalClass">
                 <div class="head-title">
@@ -31,7 +33,11 @@
                 </div>
             </div>
             <lastSaveEnergy screenType="ver" />
-            <lastEnergyChart />
+            <lastEnergyChart
+                screenType="ver"
+                :showPing="nowPage"
+                @donethreepage="doneThreePage"
+            />
         </div>
     </div>
 </template>
@@ -59,17 +65,14 @@ export default {
     data() {
         return {
             nowPage: 1,
+            verticalInterval: null,
         };
     },
     mounted() {
-        // setInterval(() => {
-        //     console.log("verticalScreen-setInterval", this.nowPage);
-        //     //debugger;
-        //     this.nowPage = this.nowPage + 1;
-        //     if (this.nowPage == 4) {
-        //         this.nowPage = 1;
-        //     }
-        // }, 6000);
+       // this.timePageShow();
+    },
+    destroyed() {
+        clearInterval(this.verticalInterval);
     },
     computed: {
         ...mapState({
@@ -86,6 +89,25 @@ export default {
             },
         }),
     },
+    methods: {
+        doneThreePage() {
+            //第三屏刷新结束 通知
+            this.nowPage = 1;
+            this.timePageShow();//1屏变2屏
+        },
+        doneTowPage() {
+            //第二屏刷新结束 通知
+            this.nowPage = 3;
+        },
+        timePageShow() {
+            var timeoutsign = setTimeout(() => {
+                this.nowPage = this.nowPage + 1;
+                if (this.nowPage == 4) {
+                    this.nowPage = 1;
+                }
+            }, 6000);
+        },
+    },
 };
 </script>
 <style lang="less" scoped>

+ 21 - 7
vue.config.js

@@ -1,6 +1,6 @@
 const { name } = require("./package.json");
 let env = process.env.NODE_ENV.toString();
-console.log('env2',env);
+console.log('env2', env);
 
 module.exports = {
     publicPath: `/sagadaping`, //相对路径
@@ -15,18 +15,32 @@ module.exports = {
         //hotOnly: false,
         proxy: {
             "/daping": {
-               // http://api.sagacloud.cn/duoduo-service/object-service/object/floor/queryFs
-                 target: 'http://api.sagacloud.cn', // 接 口环境
-                // 'target': 'http://192.168.100.236:9910', // 开发环境
+                // http://api.sagacloud.cn/duoduo-service/object-service/object/floor/queryFs
+                //target: 'http://192.168.0.14:52021', // 接 口环境
+                'target': 'http://api.sagacloud.cn/', // 开发环境
                 // target: 'http://test.persagy.com', // 测试环境
                 changeOrigin: true,
                 //logLevel: "debug",
                 pathRewrite: {
-                     '^/daping': 'http://api.sagacloud.cn', // 接口环境
-                    // '^/api': 'http://192.168.100.236:9910', // 开发环境
-                    // '^/api': 'http://test.persagy.com/api' // 测试环境
+                    '^/daping': 'http://api.sagacloud.cn/', // 接口环境
+                    // '^/daping': 'http://192.168.0.14:52015', // 开发环境
+
                 },
             },
+            "/weather": {
+                // http://api.sagacloud.cn/duoduo-service/object-service/object/floor/queryFs
+                // target: 'http://192.168.0.14:52010', // 接 口环境
+                'target': 'https://duoduoenv.sagacloud.cn/', // 开发环境
+                // target: 'http://test.persagy.com', // 测试环境
+                changeOrigin: true,
+                //logLevel: "debug",
+                pathRewrite: {
+                    // '^/daping': 'http://192.168.0.14:52010', // 接口环境
+                    '^/weather': 'https://duoduoenv.sagacloud.cn/', // 开发环境
+
+                },
+            },
+
         },
     },
 };