feat(M08-B): 补现场执行记录追溯

This commit is contained in:
Codex
2026-08-10 09:46:11 +08:00
parent 01e86e6856
commit 90e230c153
3 changed files with 306 additions and 11 deletions
+48
View File
@@ -779,6 +779,53 @@ textarea {
gap: 3px;
}
.handoff-execution-list {
display: grid;
gap: 10px;
margin: 16px 0;
max-height: 300px;
overflow-y: auto;
}
.handoff-execution-list article {
background: var(--el-fill-color-light);
border: 1px solid var(--el-border-color-lighter);
border-radius: 10px;
display: grid;
gap: 8px;
padding: 12px;
}
.handoff-execution-list header {
align-items: center;
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.handoff-execution-list header span:last-child,
.handoff-execution-list small {
color: var(--el-text-color-secondary);
}
.handoff-execution-list p {
margin: 0;
white-space: pre-wrap;
}
.handoff-execution-form {
border-top: 1px solid var(--el-border-color-lighter);
display: grid;
gap: 0 12px;
grid-template-columns: repeat(3, minmax(0, 1fr));
margin-top: 16px;
padding-top: 16px;
}
.handoff-execution-result {
grid-column: 1 / -1;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
@@ -983,6 +1030,7 @@ textarea {
.photo-grid,
.trend-row,
.handoff-session .el-form,
.handoff-execution-form,
.handoff-category-progress,
.stats-filter,
.stats-grid {