You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.6 KiB
78 lines
1.6 KiB
<template>
|
|
<div id="app">
|
|
<router-view v-if="isRouterAlive" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { on, off } from "view-design/src/utils/dom";
|
|
import { setMatchMedia } from "view-design/src/utils/assist";
|
|
import { mapMutations } from "vuex";
|
|
setMatchMedia();
|
|
|
|
export default {
|
|
name: "app",
|
|
provide (){
|
|
return {
|
|
reload:this.reload
|
|
}
|
|
},
|
|
data(){
|
|
return {
|
|
isRouterAlive: true
|
|
}
|
|
},
|
|
methods: {
|
|
...mapMutations("store/layout", ["setDevice"]),
|
|
handleWindowResize() {
|
|
this.handleMatchMedia();
|
|
},
|
|
handleMatchMedia() {
|
|
const matchMedia = window.matchMedia;
|
|
|
|
if (matchMedia("(max-width: 600px)").matches) {
|
|
var deviceWidth =
|
|
document.documentElement.clientWidth || window.innerWidth;
|
|
let css = "calc(100vw/7.5)";
|
|
document.documentElement.style.fontSize = css;
|
|
this.setDevice("Mobile");
|
|
} else if (matchMedia("(max-width: 992px)").matches) {
|
|
document.documentElement.style.fontSize = "12px";
|
|
this.setDevice("Tablet");
|
|
} else {
|
|
document.documentElement.style.fontSize = "12px";
|
|
this.setDevice("Desktop");
|
|
}
|
|
},
|
|
reload(){
|
|
this.isRouterAlive = false
|
|
this.$nextTick(function () {
|
|
this.isRouterAlive = true
|
|
})
|
|
}
|
|
},
|
|
mounted() {
|
|
on(window, "resize", this.handleWindowResize);
|
|
this.handleMatchMedia();
|
|
},
|
|
beforeDestroy() {
|
|
off(window, "resize", this.handleWindowResize);
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
.size {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
html,
|
|
body {
|
|
.size;
|
|
// overflow: hidden;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#app {
|
|
.size;
|
|
}
|
|
</style>
|
|
|