Merge branch 'main' of git.zdool.com:xs/ggfwjsc
This commit is contained in:
commit
ea5d60501a
|
@ -13,8 +13,19 @@
|
|||
<script setup>
|
||||
import Header from "../components/header.vue";
|
||||
|
||||
import { ref, onMounted, onBeforeMount } from "vue";
|
||||
|
||||
import { ref, onMounted, onBeforeMount ,watch} from "vue";
|
||||
import { useRouter, useRoute } from "vue-router";
|
||||
const router = useRouter();
|
||||
const routers = useRoute();
|
||||
console.log(routers.path);
|
||||
watch(
|
||||
() => routers.path,
|
||||
(newVal, oldVal) => {
|
||||
if (routers.path == '/home/index/map') {
|
||||
reset_font()
|
||||
}
|
||||
}
|
||||
);
|
||||
const reset_font = () => {
|
||||
let width = document.documentElement.clientWidth || document.body.clientWidth;
|
||||
let height =
|
||||
|
@ -30,7 +41,7 @@ const reset_font = () => {
|
|||
document.querySelector(".header_content").style.transform =
|
||||
"scale(" + width / 1920 + "," + height / 1080 + ")";
|
||||
if (
|
||||
document.querySelector(".left").style){
|
||||
document.querySelector(".left")) {
|
||||
document.querySelector(".left").style.transformOrigin = "bottom left";
|
||||
document.querySelector(".left").style.transform =
|
||||
"scale(" + width / 1920 + "," + height / 1080 + ")";
|
||||
|
|
Loading…
Reference in New Issue