From c2030b1564340f9203d8cdb198cae498e69dd551 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=AD=E5=BA=86=E6=B3=B0?= <12369755+htcloud1@user.noreply.gitee.com> Date: Thu, 20 Aug 2026 23:49:20 +0800 Subject: [PATCH] =?UTF-8?q?style(detail):=20=E7=BB=9F=E4=B8=80=E7=AB=A0?= =?UTF-8?q?=E8=8A=82=E6=A0=87=E9=A2=98=20class=20+=20=E6=94=B9=E7=BA=A2?= =?UTF-8?q?=E5=AD=97=E6=8F=90=E7=A4=BA=E4=B8=BA=E7=81=B0=E5=AD=97=20(?= =?UTF-8?q?=E5=AF=B9=E9=BD=90=20ProjectsNew)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 3 处 .section-title → .new-card-title (项目信息已用, 现在全页统一) - 2 处 .hint-red → .hint-text (灰字 #909399, 跟 ProjectsNew 一致) - 删 .section-title / .hint-red 冗余样式块 - 加 .hint-text 样式 (1:1 抄 ProjectsNew L378-380) - 业务逻辑 0 改动 Co-Authored-By: Claude --- .../views/manager/ManagerProjectDetail.vue | 21 ++++++++----------- 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/ry-vue3/src/views/manager/ManagerProjectDetail.vue b/ry-vue3/src/views/manager/ManagerProjectDetail.vue index 9347115..9a91a58 100644 --- a/ry-vue3/src/views/manager/ManagerProjectDetail.vue +++ b/ry-vue3/src/views/manager/ManagerProjectDetail.vue @@ -35,8 +35,8 @@ -
角色劳务设置
-

*角色劳务设置针对该项目所有会议生效

+
角色劳务设置
+

*角色劳务设置针对该项目所有会议生效

@@ -65,8 +65,8 @@ -
支持单位监督员
-

*增加只显示已点支持意向的

+
支持单位监督员
+

*增加只显示已点支持意向的

{{ idx + 1 }}. @@ -80,7 +80,7 @@
-
已发布公告
+
已发布公告
发布公告 刷新 @@ -398,11 +398,6 @@ onMounted(async () => { .breadcrumb { font-size: 13px; color: #8c8c8c; margin-bottom: 12px; } .breadcrumb .current { color: #262626; font-weight: 500; } -.section-title { - font-size: 14px; font-weight: 600; color: #262626; margin: 16px 0 12px; - padding-left: 8px; border-left: 3px solid var(--brand-primary); -} - /* 项目信息: 11 字段, 一列竖排 (el-form + 文本, 无分隔线) */ .info-form { padding-top: 4px; } .info-form :deep(.el-form-item) { margin-bottom: 8px; } @@ -447,8 +442,10 @@ onMounted(async () => { .info-table th { background: #fafafa; padding: 10px 12px; text-align: left; color: #1a1a1a; font-weight: 600; border-bottom: 1px solid #f0f0f0; white-space: nowrap; } .info-table td { padding: 10px 12px; border-bottom: 1px solid #f5f5f5; color: #595959; vertical-align: middle; } -/* 红字提示 */ -.hint-red { font-size: 12px; color: #ff0000; line-height: 1.7; margin: 4px 0 16px; } +/* 提示 (灰色, 跟 ProjectsNew 一致) */ +.hint-text { font-size: 12px; color: #909399; margin: 8px 0; line-height: 1.6; } +.hint-text p { margin-bottom: 4px; } +.hint-text p:last-child { margin-bottom: 0; } /* 工具栏 */ .toolbar { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }