修复V4办理页进度与卡片对齐问题

This commit is contained in:
andy
2026-07-22 11:10:33 +07:00
parent 542c872597
commit 0b420685f9
9 changed files with 49 additions and 5 deletions

View File

@@ -80,6 +80,10 @@
<span>{{ t('taskV4.reviewCards') }}</span>
<strong>{{ detail.card_counts.review_required_count }}</strong>
</div>
<div class="handling-progress__item handling-progress__item--readonly">
<span>{{ t('taskV4.readonlyCards') }}</span>
<strong>{{ detail.card_counts.readonly_count }}</strong>
</div>
<div class="handling-progress__item handling-progress__item--confirmed">
<span>{{ t('taskV4.confirmedCards') }}</span>
<strong>{{ detail.card_counts.confirmed_count }}</strong>
@@ -784,6 +788,10 @@ function formatApiError(error: unknown, fallback: string): {
line-height: 1;
}
.handling-progress__item--total {
grid-column: 1 / -1;
}
.handling-progress__item--pending strong {
color: var(--th-color-info);
}
@@ -796,6 +804,10 @@ function formatApiError(error: unknown, fallback: string): {
color: var(--th-color-success);
}
.handling-progress__item--readonly strong {
color: var(--th-color-slate-600);
}
.card-stack {
display: grid;
gap: 14px;