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

@@ -92,8 +92,9 @@
z-index: 30;
width: 28px;
height: 28px;
display: inline-grid;
place-items: center;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
border: 1px solid #dbe4ee;
border-radius: 999px;
@@ -125,7 +126,17 @@
.rail-collapse-btn .mdi {
font-size: 17px;
line-height: 1;
display: inline-flex;
align-items: center;
justify-content: center;
}
.rail-collapse-btn .mdi-chevron-left {
margin-left: 1px;
}
.rail-collapse-btn .mdi-chevron-right {
margin-right: 1px;
}
.rail-nav {

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,

View File

@@ -118,6 +118,56 @@
font-weight: 850;
}
.message-answer-markdown :deep(.markdown-table-wrap) {
width: 100%;
max-width: 100%;
margin: 10px 0 12px;
overflow-x: auto;
border: 1px solid #dbe4ee;
border-radius: 10px;
background: #ffffff;
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}
.message-answer-markdown :deep(table) {
width: 100%;
min-width: 460px;
border: 0;
border-collapse: separate;
border-spacing: 0;
background: #ffffff;
font-size: inherit;
}
.message-answer-markdown :deep(th),
.message-answer-markdown :deep(td) {
padding: 8px 10px;
border-bottom: 1px solid #e2e8f0;
text-align: left;
vertical-align: top;
white-space: normal;
}
.message-answer-markdown :deep(th) {
background: #f8fafc;
color: #0f172a;
font-weight: 760;
border-bottom-color: #cbd5e1;
}
.message-answer-markdown :deep(td) {
color: #334155;
font-weight: 520;
}
.message-answer-markdown :deep(tbody tr:nth-child(even) td) {
background: #fbfdff;
}
.message-answer-markdown :deep(tbody tr:last-child td) {
border-bottom: 0;
}
.welcome-quick-actions {
margin-top: 14px;
padding-top: 12px;
@@ -202,9 +252,12 @@
margin-top: 12px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
grid-auto-rows: 1fr;
gap: 8px;
}
.message-suggested-action-btn {
height: 100%;
min-height: 54px;
display: grid;
grid-template-columns: 30px minmax(0, 1fr) auto;
@@ -244,7 +297,6 @@
}
.message-detail-block,
.application-preview-table,
.draft-preview {
margin-top: 12px;
padding: 12px;
@@ -263,16 +315,51 @@
}
.application-preview-table {
margin-top: 12px;
display: grid;
padding: 0;
overflow: hidden;
border: 1px solid #d7e4f2;
border-radius: 8px;
background: #ffffff;
color: #334155;
font-size: var(--wb-fs-bubble, 13px);
}
.application-preview-row {
position: relative;
display: grid;
grid-template-columns: minmax(96px, 0.42fr) minmax(0, 1fr);
grid-template-columns: 108px minmax(0, 1fr);
min-height: 38px;
border-top: 1px solid #e2e8f0;
border-top: 1px solid #e6edf5;
}
.application-preview-row.editable {
cursor: pointer;
}
.application-preview-row.editable:hover {
background: #f8fbff;
}
.application-preview-row.editable:hover .application-preview-label,
.application-preview-row.editable:hover .application-preview-value {
background: #f8fbff;
}
.application-preview-row.editable.missing:hover .application-preview-label {
background: color-mix(in srgb, var(--theme-primary-soft, #eaf4fa) 82%, #ffffff);
}
.application-preview-row.editable.missing:hover .application-preview-value {
background: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.09);
}
.application-preview-row.editable:focus-visible {
position: relative;
z-index: 1;
outline: 2px solid rgba(var(--theme-primary-rgb, 58, 124, 165), 0.45);
outline-offset: -2px;
}
.application-preview-row:first-child {
@@ -280,9 +367,10 @@
}
.application-preview-row.head {
background: #eff6ff;
color: #334155;
font-size: 12px;
min-height: 34px;
background: #f8fafc;
color: #475569;
font-size: var(--wb-fs-caption, 12px);
font-weight: 850;
}
@@ -291,37 +379,157 @@
align-items: center;
gap: 8px;
min-width: 0;
padding: 8px 10px;
padding: 8px 12px;
}
.application-preview-label {
border-right: 1px solid #e6edf5;
background: #fbfdff;
color: #64748b;
border-right: 1px solid #e2e8f0;
font-weight: 760;
}
.application-preview-value {
position: relative;
color: #0f172a;
font-weight: 750;
font-weight: 650;
}
.application-preview-row.highlight .application-preview-label {
background: var(--theme-primary-soft, #eaf4fa);
color: var(--theme-primary-active, #255b7d);
}
.application-preview-row.highlight .application-preview-value {
background: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.08);
color: var(--theme-primary-active, #255b7d);
font-weight: 780;
}
.application-preview-row.missing {
background: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.035);
box-shadow: inset 3px 0 0 rgba(var(--theme-primary-rgb, 58, 124, 165), 0.42);
}
.application-preview-row.missing .application-preview-label {
background: color-mix(in srgb, var(--theme-primary-soft, #eaf4fa) 76%, #ffffff);
color: var(--theme-primary-active, #255b7d);
font-weight: 880;
}
.application-preview-row.missing .application-preview-value {
background: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.07);
color: #0f172a;
font-weight: 850;
}
.application-preview-text {
min-width: 0;
overflow-wrap: anywhere;
line-height: 1.45;
}
.application-preview-input {
width: 100%;
min-width: 0;
min-height: 32px;
border: 1px solid #cbd5e1;
border-radius: 8px;
height: 30px;
padding: 0 9px;
border: 1px solid rgba(var(--theme-primary-rgb, 58, 124, 165), 0.48);
border-radius: 6px;
background: #ffffff;
color: #0f172a;
font: inherit;
font-weight: 650;
line-height: 1.2;
outline: none;
box-shadow: 0 0 0 3px rgba(var(--theme-primary-rgb, 58, 124, 165), 0.12);
}
.application-preview-select {
min-width: 0;
width: 100%;
cursor: pointer;
}
.application-preview-edit-btn {
width: 28px;
height: 28px;
flex: 0 0 auto;
width: 24px;
height: 24px;
display: inline-grid;
place-items: center;
border: 1px solid #cbd5e1;
border-radius: 8px;
background: #ffffff;
color: #2563eb;
border: 1px solid transparent;
border-radius: 6px;
background: var(--theme-primary-soft, #eaf4fa);
color: var(--theme-primary-active, #255b7d);
cursor: pointer;
opacity: 0;
transition: opacity 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.application-preview-edit-btn i {
font-size: 14px;
}
.application-preview-row:hover .application-preview-edit-btn,
.application-preview-edit-btn:focus-visible {
opacity: 1;
}
.application-preview-edit-btn:hover:not(:disabled),
.application-preview-edit-btn:focus-visible {
border-color: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.35);
background: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.14);
}
.application-preview-edit-btn:disabled {
cursor: not-allowed;
opacity: 0.42;
}
.application-preview-footer-missing {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px 6px;
margin-top: 48px;
padding: 2px 0 0;
border: 0;
background: transparent;
color: #334155;
font-size: 13px;
font-weight: 780;
line-height: 1.7;
}
.application-preview-missing-prefix,
.application-preview-missing-suffix {
color: #334155;
font-weight: 850;
}
.application-preview-missing-list {
display: inline-flex;
flex-wrap: wrap;
align-items: center;
gap: 4px;
}
.application-preview-missing-chip {
display: inline-flex;
align-items: center;
min-height: 22px;
padding: 0 7px;
border: 0;
border-radius: 6px;
background: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.1);
color: var(--theme-primary-active, #255b7d);
font-weight: 880;
}
.application-preview-missing-separator {
color: var(--theme-primary-active, #255b7d);
font-weight: 820;
}
.expense-query-record-list,

View File

@@ -74,7 +74,7 @@
height: 38px;
padding: 0 12px 0 36px;
border: 1px solid #d7e0ea;
border-radius: 8px;
border-radius: 4px;
background: #fff;
color: #0f172a;
font-size: 13px;
@@ -98,7 +98,7 @@
justify-content: center;
gap: 9px;
padding: 0 14px;
border-radius: 8px;
border-radius: 4px;
font-size: 14px;
font-weight: 750;
white-space: nowrap;

View File

@@ -306,7 +306,7 @@
display: inline-flex;
align-items: center;
padding: 0 10px;
border-radius: 999px;
border-radius: 4px;
background: var(--theme-primary-soft);
color: var(--theme-primary-active);
font-size: 12px;

View File

@@ -295,7 +295,7 @@
gap: 8px;
padding: 0 18px;
border: 0;
border-radius: 10px;
border-radius: 4px;
background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-active));
color: #fff;
font-size: 14px;

View File

@@ -379,9 +379,9 @@
align-items: center;
justify-content: center;
padding: 0 10px;
border-radius: 999px;
background: #eff6ff;
color: #2563eb;
border-radius: 4px;
background: var(--theme-primary-soft);
color: var(--theme-primary-active);
font-size: 12px;
font-weight: 800;
}
@@ -880,7 +880,7 @@ tbody tr:last-child td {
gap: 10px;
padding: 10px 12px;
border: 1px solid #d7e0ea;
border-radius: 10px;
border-radius: 4px;
background: #fff;
color: #0f172a;
font-size: 13px;
@@ -909,7 +909,7 @@ tbody tr:last-child td {
gap: 10px;
padding: 12px;
border: 1px solid #d7e0ea;
border-radius: 12px;
border-radius: 4px;
background: #fff;
box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}
@@ -917,7 +917,7 @@ tbody tr:last-child td {
.manager-picker-panel input[type='search'] {
width: 100%;
border: 1px solid #d7e0ea;
border-radius: 10px;
border-radius: 4px;
background: #fff;
color: #0f172a;
font-size: 13px;
@@ -943,7 +943,7 @@ tbody tr:last-child td {
width: 100%;
padding: 10px 12px;
border: 1px solid #edf2f7;
border-radius: 10px;
border-radius: 4px;
background: #fbfdff;
text-align: left;
}

View File

@@ -323,9 +323,13 @@
--assistant-viewport-inset: 10px;
}
:global(.assistant-el-overlay) {
--assistant-viewport-inset: 10px;
}
.assistant-modal,
.assistant-modal-stage {
border-radius: 18px;
border-radius: 10px;
}
.assistant-header {

View File

@@ -1,3 +1,115 @@
:global(.assistant-el-overlay) {
--assistant-viewport-inset: clamp(10px, 1.25vmin, 18px);
background:
linear-gradient(180deg, rgba(239, 246, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%),
rgba(241, 245, 249, 0.98);
}
:global(.assistant-el-overlay .el-overlay-dialog) {
display: flex;
align-items: stretch;
justify-content: stretch;
width: 100vw;
height: 100dvh;
max-height: 100dvh;
padding: var(--assistant-viewport-inset);
box-sizing: border-box;
overflow: hidden;
}
:global(.assistant-el-dialog.el-dialog.is-fullscreen) {
width: 100%;
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
border: 0;
border-radius: 10px;
background: transparent;
box-shadow: none;
overflow: hidden;
}
:global(.assistant-el-dialog .el-dialog__header) {
display: none;
}
:global(.assistant-el-dialog .assistant-el-dialog-body) {
flex: 1;
min-width: 0;
min-height: 0;
width: 100%;
display: flex;
padding: 0;
overflow: hidden;
}
:global(.assistant-dialog-zoom-enter-active),
:global(.assistant-dialog-zoom-leave-active) {
transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1);
transition-duration: 180ms !important;
}
:global(.assistant-dialog-zoom-leave-active) {
transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
transition-duration: 260ms !important;
}
:global(.assistant-dialog-zoom-enter-active .assistant-modal-stage),
:global(.assistant-dialog-zoom-leave-active .assistant-modal-stage) {
transform-origin: center center;
will-change: transform, opacity;
}
:global(.assistant-dialog-zoom-enter-active .assistant-modal-stage) {
animation: assistantWorkbenchScaleIn 260ms cubic-bezier(0.2, 0, 0, 1) both;
animation-duration: 260ms !important;
}
:global(.assistant-dialog-zoom-leave-active .assistant-modal-stage) {
animation: assistantWorkbenchScaleOut 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
animation-duration: 260ms !important;
}
:global(.assistant-dialog-zoom-enter-from),
:global(.assistant-dialog-zoom-leave-to) {
opacity: 0;
}
@keyframes assistantWorkbenchScaleIn {
0% {
opacity: 0;
transform: scale3d(0.82, 0.82, 1);
}
72% {
opacity: 1;
transform: scale3d(1.012, 1.012, 1);
}
100% {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
@keyframes assistantWorkbenchScaleOut {
0% {
opacity: 1;
transform: scale3d(1, 1, 1);
}
62% {
opacity: 0.72;
transform: scale3d(0.972, 0.972, 1);
}
100% {
opacity: 0;
transform: scale3d(0.94, 0.94, 1);
}
}
.assistant-overlay {
/* 距屏幕边缘 10-18px随视口微调高度使用 dvh 适配浏览器工具栏 */
--assistant-viewport-inset: clamp(10px, 1.25vmin, 18px);
@@ -30,7 +142,7 @@
background: transparent;
box-shadow: none;
border: 0;
border-radius: 24px;
border-radius: 10px;
backdrop-filter: none;
-webkit-backdrop-filter: none;
overflow: hidden;
@@ -67,7 +179,7 @@
display: grid;
grid-template-rows: auto minmax(0, 1fr);
transform: none;
border-radius: 24px;
border-radius: 10px;
background:
linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
box-shadow:
@@ -78,6 +190,7 @@
background-clip: padding-box;
overflow: hidden;
isolation: isolate;
will-change: transform, opacity;
}
.assistant-header {
@@ -87,8 +200,8 @@
gap: 16px;
flex-shrink: 0;
padding: clamp(14px, 2vh, 22px) clamp(148px, 11vw, 172px) clamp(12px, 1.6vh, 18px) clamp(18px, 2vw, 26px);
border-bottom: 1px solid rgba(203, 213, 225, 0.78);
background: linear-gradient(180deg, rgba(247, 250, 249, 0.82) 0%, rgba(240, 246, 244, 0.7) 100%);
border-bottom: none;
background: #fff;
}
.assistant-header-main {
@@ -118,21 +231,46 @@
color: #c2410c;
}
.assistant-header h2 {
.assistant-title {
color: #0f172a;
font-size: clamp(17px, 1.1vw, var(--wb-fs-title));
font-weight: 900;
letter-spacing: 0.01em;
font-size: 19px;
font-weight: 650;
letter-spacing: 0;
line-height: 1.25;
margin: 0;
cursor: default;
text-decoration: none;
user-select: text;
border: 0;
outline: 0;
background: transparent;
}
.assistant-header p {
margin-top: 4px;
.assistant-title + p {
margin: 4px 0 0;
color: #64748b;
font-size: clamp(11px, 0.85vw, var(--wb-fs-desc));
line-height: 1.55;
}
.assistant-subtitle {
margin: 4px 0 0;
color: #64748b;
font-size: clamp(11px, 0.85vw, var(--wb-fs-desc));
line-height: 1.55;
cursor: default;
}
.assistant-header p {
color: #64748b;
font-size: clamp(11px, 0.85vw, var(--wb-fs-desc));
line-height: 1.55;
}
.assistant-header-main {
cursor: default;
}
.assistant-header-actions {
position: absolute;
top: 16px;
@@ -537,37 +675,82 @@
.dialog-toolbar {
display: flex;
gap: 12px;
align-items: center;
gap: 10px;
flex-wrap: wrap;
padding: 16px 18px 12px;
padding: 12px 16px;
border-bottom: 1px solid rgba(238, 242, 247, 0.9);
background: #ffffff;
}
.dialog-toolbar-label {
display: inline-flex;
align-items: center;
gap: 6px;
color: #475569;
font-size: 12px;
font-weight: 700;
white-space: nowrap;
letter-spacing: 0.2px;
padding: 0;
background: transparent;
border: 0;
border-radius: 0;
margin-right: 4px;
}
.dialog-toolbar-label i {
color: #475569;
opacity: 0.85;
font-size: 14px;
line-height: 1;
}
.shortcut-chip {
min-height: 36px;
margin-right: 0;
flex: 0 0 auto;
min-height: 34px;
display: inline-flex;
align-items: center;
gap: 7px;
padding: 0 14px;
gap: 6px;
padding: 0 13px;
border: 1px solid rgba(219, 230, 240, 0.9);
border-radius: 999px;
border-radius: 8px;
background: rgba(255, 255, 255, 0.95);
color: #334155;
font-size: var(--wb-fs-chip);
font-weight: 750;
box-shadow: 0 4px 12px rgba(241, 245, 249, 0.78);
font-size: 13px;
font-weight: 650;
box-shadow: none;
white-space: nowrap;
transition:
border-color 0.2s ease,
color 0.2s ease,
background-color 0.2s ease;
}
.shortcut-chip-wrap {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px;
}
.shortcut-chip:hover:not(:disabled) {
border-color: rgba(59, 130, 246, 0.45);
background: rgba(239, 246, 255, 0.95);
color: var(--theme-primary-active, #1d4ed8);
}
.shortcut-chip i {
color: var(--theme-primary);
font-size: 14px;
}
.shortcut-chip.active {
border-color: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.38);
border-color: rgba(var(--theme-primary-rgb, 58, 124, 165), 0.55);
background: var(--theme-primary-soft);
color: var(--theme-primary-active);
box-shadow: none;
box-shadow: 0 2px 6px rgba(37, 99, 235, 0.18);
}
.shortcut-chip.active i {
@@ -580,6 +763,11 @@
box-shadow: none;
}
.shortcut-chip:focus-visible {
outline: 2px solid rgba(59, 130, 246, 0.55);
outline-offset: 2px;
}
.message-list {
min-height: 0;
display: grid;