From 89380e6260a75d1d3b94de687ebcc2f50d50659d Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 03 Feb 2026 15:44:33 +0800
Subject: [PATCH] feat:环境变量配置调整
---
applications/task-work-order/src/styles/common.scss | 99 +++++++++++++++++++++++++++++++++++++++++++++----
1 files changed, 91 insertions(+), 8 deletions(-)
diff --git a/applications/task-work-order/src/styles/common.scss b/applications/task-work-order/src/styles/common.scss
index 18ff080..d1cea41 100644
--- a/applications/task-work-order/src/styles/common.scss
+++ b/applications/task-work-order/src/styles/common.scss
@@ -8,6 +8,9 @@
// 地图编辑样式
@import './mapEdit.scss';
+@import './common/cockpit.scss';
+@import './customFont.scss';
+
a {
text-decoration: none;
color: #333;
@@ -15,6 +18,7 @@
* {
outline: none;
+ box-sizing: border-box;
}
.avue-sidebar,
@@ -26,10 +30,11 @@
}
.avue-layout {
+ position: relative;
display: flex;
width: 100%;
height: 100%;
- background: url("@/assets/images/layoutBg.png") no-repeat center / 100% 100%;
+ background: #EBEEF4;
overflow: hidden;
&--horizontal {
@@ -56,21 +61,97 @@
width: $sidebar_width
}
}
+
+ > .layer-page-leaf-container {
+ width: 179px;
+ height: 100%;
+ box-sizing: border-box;
+
+ .avue-sidebar {
+ display: flex;
+ flex-direction: column;
+
+ .avue-logo {
+ height: 76px;
+ }
+
+ .footer {
+ height: 102px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+
+ .avue-breadcrumb {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 36px;
+ height: 36px;
+ cursor: pointer;
+ }
+ }
+
+ .el-menu-item,
+ .el-sub-menu__title {
+ height: 56px !important;
+ line-height: 56px !important;
+ }
+ }
+ }
+
+ > .layer-page-right-container {
+ padding: 0 30px;
+ padding-bottom: 30px;
+ display: flex;
+ flex-direction: column;
+ width: 0;
+ flex: 1;
+ height: 100%;
+ box-sizing: border-box;
+ background: url('@/assets/images/layoutBg.png') repeat;
+ background-position: 0 -20px;
+
+ .layer-content-bottom {
+ width: 100%;
+ height: 0;
+ flex: 1;
+ }
+ }
}
.avue-contail {
width: 100%;
height: 100%;
- background: #f0f2f5;
background-size: 100%;
background-repeat: no-repeat;
}
.avue--collapse {
- .avue-sidebar,
- .avue-logo {
- width: $sidebar_collapse;
+ .avue-layout {
+ > .layer-page-leaf-container {
+ width: 53px;
+ height: 100%;
+
+ .avue-sidebar {
+ width: 100%;
+
+ .el-menu--collapse {
+ width: 100%;
+
+ .el-sub-menu__title {
+ padding: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+
+ i {
+ margin-right: 0;
+ }
+ }
+ }
+ }
+ }
}
}
@@ -122,7 +203,7 @@
bottom: 0;
}
-.ztzf-cesium {
+.work-cesium {
.cesium-viewer {
height: 100%;
overflow: hidden;
@@ -191,7 +272,8 @@
}
}
-.ztzf-cesium {
+.gd-cesium {
+ position: relative;
.cesium-viewer {
height: 100%;
overflow: hidden;
@@ -215,4 +297,5 @@
.cesium-viewer-bottom {
display: none;
}
-}
\ No newline at end of file
+}
+
--
Gitblit v1.9.3