From 823cf3819f2f91adeada3707435d40b3dac8f7b4 Mon Sep 17 00:00:00 2001
From: tony.cheng <chengmingwei_1984122@126.com>
Date: Fri, 06 Feb 2026 18:15:05 +0800
Subject: [PATCH] feat: 实现证据材料审查弹窗功能
---
web-app/src/components/tools/TypicalCaseSearch.css | 35 +++++++++++++++++++++++++++++++++--
1 files changed, 33 insertions(+), 2 deletions(-)
diff --git a/web-app/src/components/tools/TypicalCaseSearch.css b/web-app/src/components/tools/TypicalCaseSearch.css
index af263ac..b28e87f 100644
--- a/web-app/src/components/tools/TypicalCaseSearch.css
+++ b/web-app/src/components/tools/TypicalCaseSearch.css
@@ -30,8 +30,13 @@
.case-search-query-form {
display: grid;
- grid-template-columns: repeat(4, 1fr);
+ grid-template-columns: repeat(2, 1fr);
gap: 20px;
+}
+
+/* 关键词输入框占满一行 */
+.case-search-keyword-full {
+ grid-column: 1 / -1;
}
.case-search-form-group {
@@ -66,7 +71,7 @@
/* 筛选器区域 */
.case-search-filters-section {
display: grid;
- grid-template-columns: repeat(3, 1fr);
+ grid-template-columns: repeat(2, 1fr);
gap: 25px;
margin-bottom: 30px;
}
@@ -343,6 +348,32 @@
display: none; /* 使用自定义的 closeIcon */
}
+/* Modal body 滚动样式 */
+.case-detail-antd-modal .ant-modal-body {
+ overflow-y: auto !important;
+ max-height: 85vh !important;
+ scrollbar-width: thin;
+ scrollbar-color: #1a6fb8 #f0f0f0;
+}
+
+.case-detail-antd-modal .ant-modal-body::-webkit-scrollbar {
+ width: 8px;
+}
+
+.case-detail-antd-modal .ant-modal-body::-webkit-scrollbar-track {
+ background: #f0f0f0;
+ border-radius: 4px;
+}
+
+.case-detail-antd-modal .ant-modal-body::-webkit-scrollbar-thumb {
+ background-color: #1a6fb8;
+ border-radius: 4px;
+}
+
+.case-detail-antd-modal .ant-modal-body::-webkit-scrollbar-thumb:hover {
+ background-color: #0d4a8a;
+}
+
/* 响应式 */
@media (max-width: 1200px) {
.case-search-query-form {
--
Gitblit v1.8.0