From a76f116f09a0442f62600dd7333f92e651131fd8 Mon Sep 17 00:00:00 2001 From: gaoxq <376340421@qq.com> Date: Tue, 16 Dec 2025 12:47:58 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=89=8D=E7=AB=AFvue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../analysis/components/DynamicInfo.vue | 118 ++++++----- .../analysis/components/ProjectCard.vue | 90 ++++++--- .../layouts/views/desktop/analysis/index.vue | 187 +++++++++++++++--- .../workbench/components/MySchedule.vue | 68 +++---- .../layouts/views/desktop/workbench/index.vue | 91 +-------- 5 files changed, 329 insertions(+), 225 deletions(-) diff --git a/web-vue/packages/core/layouts/views/desktop/analysis/components/DynamicInfo.vue b/web-vue/packages/core/layouts/views/desktop/analysis/components/DynamicInfo.vue index 125c26e5..e2289921 100644 --- a/web-vue/packages/core/layouts/views/desktop/analysis/components/DynamicInfo.vue +++ b/web-vue/packages/core/layouts/views/desktop/analysis/components/DynamicInfo.vue @@ -131,40 +131,44 @@ export default defineComponent({ \ No newline at end of file + +/* 移除Card组件的默认内边距影响 */ +:deep(.ant-card-body) { + padding: 8px 4px !important; /* 极小的内边距,让内容紧贴 */ +} + diff --git a/web-vue/packages/core/layouts/views/desktop/analysis/components/ProjectCard.vue b/web-vue/packages/core/layouts/views/desktop/analysis/components/ProjectCard.vue index f2bb4509..8b203cbe 100644 --- a/web-vue/packages/core/layouts/views/desktop/analysis/components/ProjectCard.vue +++ b/web-vue/packages/core/layouts/views/desktop/analysis/components/ProjectCard.vue @@ -1,6 +1,6 @@