Merge branch 'main' of git.zdool.com:xs/ggfwjsc

This commit is contained in:
duanxiaohai 2024-04-18 10:47:43 +08:00
commit b8f001f213
6 changed files with 166 additions and 63 deletions

55
src/assets/css/common.css Normal file
View File

@ -0,0 +1,55 @@
* {
padding: 0;
margin: 0;
list-style: none;
outline: none;
border: none;
text-decoration: none;
/* color: #8FFDFF; */
}
span,
p,
a {
font-size: 14px;
}
em {
font-family: dsFont;
font-size: 32px;
font-size: normal;
font-weight: bold;
color: #8FFDFF;
}
html::-webkit-scrollbar {
width: 0px;
height: 0px;
overflow: hidden;
}
body {
background: none;
overflow: hidden;
/* width: 1920px;
height: 1080px; */
display: flex;
position: relative;
flex-direction: column;
box-sizing: border-box;
}
#app {
flex: 1;
/* height: 1080px; */
box-sizing: border-box;
}
.content {
flex: 1;
}
#m {
width: 1920px !important;
height: 1080px !important;
overflow: hidden;
position: absolute;
z-index: 101;
}

View File

@ -5,6 +5,6 @@ import App from './App.vue'
import router from "./router"; import router from "./router";
import ElementPlus from 'element-plus' import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css' import 'element-plus/dist/index.css'
import './assets/css/common.css'
createApp(App).use(router).use(ElementPlus).mount('#app') createApp(App).use(router).use(ElementPlus).mount('#app')

View File

@ -414,7 +414,6 @@ onBeforeMount(() => {
.module { .module {
display: flex; display: flex;
width: 100%; width: 100%;
height: calc(100vh - 112px);
} }
.left_bg { .left_bg {

View File

@ -1,13 +1,11 @@
<template> <template>
<div> <div id="m" class="content">
<div class="content"> <div id="container">
<div class="ydool_body"> <!-- <div id="header">
<!-- <div id="header">
<img class="title" src="../assets/img_07.png" alt="" /> <img class="title" src="../assets/img_07.png" alt="" />
</div> --> </div> -->
<Header /> <Header />
<router-view /> <router-view />
</div>
</div> </div>
</div> </div>
</template> </template>
@ -18,66 +16,119 @@ import Header from "../components/header.vue";
import { ref, onMounted, onBeforeMount } from "vue"; import { ref, onMounted, onBeforeMount } from "vue";
// //
window.addEventListener("resize", () => // window.addEventListener("resize", () =>
setTimeout(function () { // setTimeout(function () {
//zoom // //zoom
location.reload(); // location.reload();
// bodyScale(); // // bodyScale();
}, 10) // }, 10)
); // );
const insertCss = (select, styles) => { // const insertCss = (select, styles) => {
console.log(styles); // console.log(styles);
if (document.styleSheets.length === 0) { // if (document.styleSheets.length === 0) {
//style,style // //style,style
var style = document.createElement("style"); // var style = document.createElement("style");
document.head.appendChild(style); // document.head.appendChild(style);
} // }
var styleSheet = document.styleSheets[document.styleSheets.length - 1]; //style .style // var styleSheet = document.styleSheets[document.styleSheets.length - 1]; //style .style
var str = select + " {"; //,obj // var str = select + " {"; //,obj
for (var prop in styles) { // for (var prop in styles) {
str += // str +=
prop.replace(/([A-Z])/g, function (item) { // prop.replace(/([A-Z])/g, function (item) {
//使 '-' // //使 '-'
return "-" + item.toLowerCase(); // return "-" + item.toLowerCase();
}) + // }) +
":" + // ":" +
styles[prop] + // styles[prop] +
";"; // ";";
} // }
str += "}"; // str += "}";
styleSheet.insertRule(str, styleSheet.cssRules.length); //style // styleSheet.insertRule(str, styleSheet.cssRules.length); //style
// };
// onBeforeMount(() => {
// let zoom = document.body.clientWidth / 1920;
// document.getElementsByTagName("body")[0].style.setProperty("--zoom", zoom);
// //zoomecharts
// let strScale = `scale(${zoom})`;
// var obj = {
// zoom: 1 / zoom,
// transform: strScale,
// transformOrigin: "0 0",
// };
// insertCss("canvas", obj);
// });
const reset_font = () => {
let width = document.documentElement.clientWidth || document.body.clientWidth;
let height =
document.documentElement.clientHeight || document.body.clientHeight;
document.querySelector("#m").style.transformOrigin = "top left";
document.querySelector("#m").style.transform =
"scale(" + width / 1920 + "," + height / 1080 + ")";
}; };
onMounted(() => {
onBeforeMount(() => { reset_font();
let zoom = document.body.clientWidth / 1920; reset_font();
document.getElementsByTagName("body")[0].style.setProperty("--zoom", zoom); });
//zoomecharts window.addEventListener("resize", function () {
let strScale = `scale(${zoom})`; reset_font();
var obj = { reset_font();
zoom: 1 / zoom,
transform: strScale,
transformOrigin: "0 0",
};
insertCss("canvas", obj);
}); });
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.content { .content {
background-image: url("../assets/bgImg.png"); background: url("../assets/bgImg.png") no-repeat 0/100% 100%;
background-size: 100% 100%; // background-image: url("../assets/bgImg.png");
background-repeat: no-repeat; // background-size: 100% 100%;
height: 100vh; // background-repeat: no-repeat;
width: 100vw; // height: 100vh;
// width: 100vw;
// overflow: hidden;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
// color: #ccffff;
}
html {
width: 100%;
height: 100%;
}
body {
width: 100%;
height: 100%;
}
#m {
width: 100%;
height: 100%;
overflow: hidden;
// position: absolute;
z-index: 101;
}
#emap {
width: 100%;
height: 980px;
position: absolute;
top: 100px;
left: 0;
z-index: 100;
}
#container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
position: relative;
overflow: hidden; overflow: hidden;
} }
.main {
:root { * {
--zoom: 1; pointer-events: all;
} }
.ydool_body {
zoom: var(--zoom);
} }
</style> </style>

View File

@ -139,7 +139,6 @@ const change = (name, index) => {
.module { .module {
display: flex; display: flex;
width: 100%; width: 100%;
height: calc(100vh - 112px);
} }
.yd_title { .yd_title {

View File

@ -216,7 +216,6 @@ const change = (name, index) => {
.module { .module {
display: flex; display: flex;
width: 100%; width: 100%;
height: calc(100vh - 112px);
} }
.yd_title { .yd_title {