fix: 优化报销创建页面样式与洞察面板交互

修复侧边栏和审计视图样式细节,完善差旅报销洞察面板和消息
组件布局,优化报销创建页面会话管理和流程状态持久化,增强
申请预览工具函数和导航图标,补充单元测试。
This commit is contained in:
caoxiaozhu
2026-05-27 10:32:08 +08:00
parent 2dcc72102d
commit b1a9c8a194
21 changed files with 922 additions and 148 deletions

View File

@@ -6,11 +6,14 @@
min-height: 0;
max-width: 100%;
overflow: hidden;
transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1);
transition:
width 360ms cubic-bezier(0.22, 1, 0.36, 1),
opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.insight-panel-shell.collapsed {
width: 0;
opacity: 0;
}
.insight-panel {
@@ -24,6 +27,20 @@
border-radius: 16px;
background: #ffffff;
box-shadow: 0 14px 32px rgba(148, 163, 184, 0.16);
opacity: 1;
transform: translateX(0) scale(1);
transform-origin: right center;
transition:
opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1);
will-change: opacity, transform;
}
.insight-panel-shell.collapsed .insight-panel {
opacity: 0;
transform: translateX(28px) scale(0.985);
pointer-events: none;
}
.insight-head {
@@ -286,28 +303,156 @@
.review-flow-list {
position: relative;
gap: 0;
padding: 2px 0 0;
}
.flow-step-item {
position: relative;
display: grid;
grid-template-columns: 28px minmax(0, 1fr);
gap: 8px;
grid-template-columns: 30px minmax(0, 1fr);
gap: 10px;
padding-bottom: 10px;
}
.flow-step-item:last-child {
padding-bottom: 0;
}
.flow-step-rail {
position: relative;
display: flex;
justify-content: center;
}
.flow-step-rail::after {
content: "";
position: absolute;
top: 28px;
bottom: -10px;
left: 50%;
width: 2px;
transform: translateX(-50%);
border-radius: 999px;
background: #e2e8f0;
opacity: 0;
transform-origin: top;
transition: opacity 0.18s ease, transform 0.32s ease, background 0.18s ease;
transform: translateX(-50%) scaleY(0);
}
.flow-step-item:not(:last-child) .flow-step-rail::after {
opacity: 1;
transform: translateX(-50%) scaleY(1);
}
.flow-step-rail span {
position: relative;
z-index: 1;
width: 26px;
height: 26px;
display: grid;
place-items: center;
border-radius: 999px;
background: #eff6ff;
color: #2563eb;
border: 1px solid #dbe4ee;
background: #f8fafc;
color: #64748b;
font-size: 11px;
font-weight: 850;
font-weight: 900;
font-variant-numeric: tabular-nums;
transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.flow-step-card {
padding: 10px;
min-width: 0;
display: grid;
gap: 7px;
padding: 10px 11px;
border-radius: 8px;
background: #f8fafc;
box-shadow: none;
transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.flow-step-item.completed .flow-step-rail::after {
background: #1e293b;
}
.flow-step-item.completed .flow-step-rail span {
border-color: #0f172a;
background: #0f172a;
color: #ffffff;
box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08);
}
.flow-step-item.completed .flow-step-card {
border-color: #1e293b;
background: #1e293b;
box-shadow: 0 10px 18px rgba(15, 23, 42, 0.14);
}
.flow-step-item.completed .flow-step-card strong {
color: #ffffff;
}
.flow-step-item.completed .flow-step-tool,
.flow-step-item.completed .flow-step-detail,
.flow-step-item.completed .flow-step-card time {
color: #cbd5e1;
}
.flow-step-item.completed .flow-step-status.completed {
background: rgba(255, 255, 255, 0.14);
color: #ffffff;
}
.flow-step-item.running .flow-step-rail span {
border-color: #2563eb;
background: #2563eb;
color: #ffffff;
box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.12);
}
.flow-step-item.running .flow-step-card {
border-color: rgba(37, 99, 235, 0.38);
background: #eff6ff;
}
.flow-step-item.failed .flow-step-rail span {
border-color: #dc2626;
background: #dc2626;
color: #ffffff;
}
.flow-step-item.failed .flow-step-card {
border-color: rgba(220, 38, 38, 0.34);
background: #fef2f2;
}
.flow-step-reveal-enter-active,
.flow-step-reveal-leave-active {
transition:
opacity 0.24s ease,
transform 0.28s ease,
filter 0.28s ease;
}
.flow-step-reveal-enter-from,
.flow-step-reveal-leave-to {
opacity: 0;
filter: blur(2px);
transform: translateY(-8px);
}
.flow-step-reveal-enter-to,
.flow-step-reveal-leave-from {
opacity: 1;
filter: blur(0);
transform: translateY(0);
}
.flow-step-reveal-move {
transition: transform 0.24s ease;
}
.flow-empty-state,