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> <style lang="scss" scoped>
.ordersizeCenter { .ordersizeCenter {
position: fixed; position: absolute;
top: 24%; top: 11%;
left: 50%; left: 50%;
display: flex; display: flex;
justify-content: space-evenly; justify-content: space-evenly;

View File

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

View File

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

View File

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

View File

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