fix: BUG修改

This commit is contained in:
kun 2023-09-23 18:43:07 +08:00
parent 69dc15a051
commit c188552eb9
5 changed files with 14 additions and 11 deletions

View File

@ -32,8 +32,8 @@ const projectNumber = async () => {
<style lang="scss" scoped>
.ordersizeCenter {
position: fixed;
top: 24%;
position: absolute;
top: 11%;
left: 50%;
display: flex;
justify-content: space-evenly;

View File

@ -47,8 +47,8 @@ const goBack = () => {
<style lang="scss" scoped>
.orderSide {
position: fixed;
top: 14%;
position: absolute;
top: 0%;
left: 0;
width: 100%;
height: 100%;

View File

@ -186,8 +186,8 @@ const conmpanyList = async () => {
<style lang="scss" scoped>
.leftBorder {
position: fixed;
top: 21%;
position: absolute;
top: 9%;
left: 0;
width: 25%;
height: 100%;

View File

@ -658,8 +658,8 @@ const pieOption = (val: ResponseSame<ScreenResponse.FugitiveDustAllResponse> | u
<style lang="scss" scoped>
.leftBorder {
position: fixed;
top: 21%;
position: absolute;
top: 9%;
right: 0;
width: 27%;
height: 100%;

View File

@ -56,7 +56,7 @@ onMounted(() => {
if (dataScreenRef.value) {
dataScreenRef.value.style.transform = `scale(${getScale()}) translate(-50%, -50%)`;
dataScreenRef.value.style.width = `1920px`;
dataScreenRef.value.style.height = `1080px`;
dataScreenRef.value.style.height = `923px`;
}
window.addEventListener("resize", resize);
});
@ -67,11 +67,13 @@ onBeforeMount(() => {
<style lang="scss" scoped>
.all-content {
width: 100%;
height: 100%;
.orderBgc {
width: 1920px;
height: 923px;
position: fixed;
top: 41.5%;
top: 50%;
left: 50%;
.mapStyle {
position: absolute;
@ -85,7 +87,8 @@ onBeforeMount(() => {
.bottomContent {
display: flex;
width: 100%;
height: 79%;
height: 100%;
position: relative;
.leftScreen {
height: 90%;
}