From 7da04d7454d4cecb24c7a71d4ed8fe2781834bc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Fri, 12 Apr 2024 16:01:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/ManuallyCreatingTasks/index.vue | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/views/system/ManuallyCreatingTasks/index.vue b/src/views/system/ManuallyCreatingTasks/index.vue index 82104b3..0918f28 100644 --- a/src/views/system/ManuallyCreatingTasks/index.vue +++ b/src/views/system/ManuallyCreatingTasks/index.vue @@ -342,7 +342,8 @@ export default { .nodes { background-color: #F1F3F5; - height: 700px; + // height: 700px; + height: calc(100vh - 308px); display: flex; justify-content: space-between; padding-top: 20px; @@ -350,9 +351,9 @@ export default { .nodenames { border-radius: 10px; background-color: #fff; - height: 700px; + height: calc(100vh - 308px); width: 25%; - padding: 0 40px 0 40px; + padding: 0 40px 20px 40px; background-color: #fff; overflow: scroll; @@ -370,9 +371,11 @@ export default { } .nodetexts { + padding-bottom: 20px; + overflow: scroll; border-radius: 10px; width: 73%; - height: 700px; + height: calc(100vh - 308px); } }