Browse Source

修改平面图横竖屏切换问题

jxing 4 years ago
parent
commit
43e6232a49
2 changed files with 21 additions and 14 deletions
  1. 9 8
      src/components/floorMap/floorList.vue
  2. 12 6
      src/views/overview/MapView.vue

+ 9 - 8
src/components/floorMap/floorList.vue

@@ -101,7 +101,7 @@ export default {
       } else if (this.direction == 2) {
         this.conHeight = this.floorsArr.length * 30
         this.conHeight = this.conHeight >= 230 ? 230 : this.conHeight
-        this.showNumber = this.floorsArr.length > 8 ? 8 : this.floorsArr.length
+        this.showNumber = this.floorsArr.length > 7 ? 7 : this.floorsArr.length
         this.marginTopMax = -(this.floorsArr.length - this.showNumber) * this.height
       }
     },
@@ -178,16 +178,17 @@ export default {
   watch: {
     floorsArr: {
       handler() {
-        this.init()
+        if (window.orientation === 0 || window.orientation === 180) {
+          this.direction = 1;
+          this.init()
+        }
+        if (window.orientation === 90 || window.orientation === -90) {
+          this.direction = 2;
+          this.init()
+        }
       },
       immediate: true,
       deep: true
-    },
-    direction: {
-      handler() {
-        this.init()
-      },
-      immediate: true
     }
   }
 }

+ 12 - 6
src/views/overview/MapView.vue

@@ -67,16 +67,19 @@ export default {
   beforeMount() { },
   mounted() {
     window.addEventListener("onorientationchange" in window ? "orientationchange" : "resize", () => {
-      document.getElementById("bind-canvas").width = document.getElementById("bind-map-content").offsetWidth;
-      document.getElementById("bind-canvas").height = document.getElementById("bind-map-content").offsetHeight;
+      this.clearGraphy();
       setTimeout(() => {
         if (window.orientation === 0 || window.orientation === 180) {
-          this.init(this.floorid)
+          console.log("竖屏");
         }
         if (window.orientation === 90 || window.orientation === -90) {
-          this.init(this.floorid)
+          console.log("横屏");
         }
-      }, 300)
+        document.getElementById("bind-canvas").width = document.getElementById("bind-map-content").offsetWidth;
+        document.getElementById("bind-canvas").height = document.getElementById("bind-map-content").offsetHeight;
+        console.log("容器宽高+++++++",document.getElementById("bind-map-content").offsetWidth,document.getElementById("bind-map-content").offsetHeight)
+        this.init(this.floorid)
+      }, 500)
     }, false);
     this.$nextTick(() => {
       document.getElementById("bind-canvas").width = document.getElementById("bind-map-content").offsetWidth;
@@ -487,11 +490,14 @@ export default {
 .map-view {
   width: 100%;
   height: 100%;
+  overflow: hidden;
   display: flex;
   flex-direction: column;
   #bind-map-content {
-    flex: 1;
+    width: 100%;
+    height: calc(100% - 50px);
     position: relative;
+    overflow: hidden;
     .bind-floor-list {
       position: fixed;
       top: 65px;