fix: 1. 接入入口模块的管理接口,优化样式。

2. 将查看文档评查结果详情对接接口,采用接口的方式进行查询。
This commit is contained in:
2025-11-26 23:37:14 +08:00
parent ae24b82384
commit d5827a2146
13 changed files with 563 additions and 673 deletions
+68
View File
@@ -10,6 +10,30 @@
min-height: 100vh;
}
/* 筛选面板 - 搜索框加宽 */
.entry-modules-page .filter-item-wide {
flex: 1;
min-width: 300px;
max-width: 400px;
}
.entry-modules-page .filter-item-wide .filter-control {
width: 100%;
}
/* 操作按钮样式 */
.entry-modules-page .operations-cell {
@apply flex space-x-2;
}
.entry-modules-page .operation-btn {
@apply text-sm flex items-center text-[--color-primary] bg-transparent hover:underline p-2 cursor-pointer border-none;
}
.entry-modules-page .operation-btn:disabled {
@apply opacity-50 cursor-not-allowed;
}
/* 页面头部 */
.page-header {
display: flex;
@@ -40,6 +64,50 @@
border-top: 1px solid #e5e7eb;
}
/* 表单输入框样式 - 参照rule-groups.new */
/* 使用更高优先级的选择器覆盖Tailwind */
.entry-modules-new-page .form-content input[type="text"],
.entry-modules-new-page .form-content input[type="file"],
.entry-modules-new-page .form-content textarea,
.entry-modules-new-page .form-content select {
transition: all 0.2s;
}
/* Focus状态 - 绿色主题 */
.entry-modules-new-page .form-content input[type="text"]:focus,
.entry-modules-new-page .form-content textarea:focus,
.entry-modules-new-page .form-content select:focus {
border-color: #00684a !important;
box-shadow: 0 0 0 1px rgba(0, 104, 74, 0.5) !important;
outline: 2px solid transparent !important;
outline-offset: 2px !important;
}
/* Hover状态 */
.entry-modules-new-page .form-content input[type="text"]:hover,
.entry-modules-new-page .form-content textarea:hover,
.entry-modules-new-page .form-content select:hover {
border-color: #00684a;
}
/* 通用input覆盖 - 排除checkbox和radio */
.entry-modules-new-page input:is(:not([type="checkbox"]):not([type="radio"]):not([type="file"])):focus {
border-color: #00684a !important;
box-shadow: 0 0 0 1px rgba(0, 104, 74, 0.5) !important;
outline: 2px solid transparent !important;
outline-offset: 2px !important;
}
/* 复选框样式 - 绿色主题 */
.entry-modules-new-page input[type="checkbox"] {
accent-color: #00684a;
}
.entry-modules-new-page input[type="checkbox"]:focus {
outline: 2px solid #00684a;
outline-offset: 2px;
}
/* Logo预览样式 */
.logo-preview {
display: inline-block;