|
@@ -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;
|