feat(platform): add customer report purpose navigation

This commit is contained in:
lingniu
2026-07-05 20:21:51 +08:00
parent d10291a003
commit 36ac5fe7c5
3 changed files with 147 additions and 0 deletions

View File

@@ -7598,11 +7598,82 @@ button.vp-realtime-command-item:focus-visible {
}
.vp-history-report-cadence {
margin-top: 14px;
display: grid;
grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
gap: 14px;
}
.vp-history-report-purpose {
display: grid;
grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
gap: 14px;
}
.vp-history-report-purpose-summary {
padding: 14px;
border: 1px solid rgba(10, 168, 107, 0.22);
border-radius: var(--vp-radius);
background: #f5fbf8;
display: grid;
gap: 10px;
align-content: start;
}
.vp-history-report-purpose-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 12px;
}
.vp-history-report-purpose-item {
min-height: 158px;
padding: 12px;
border: 1px solid var(--vp-border);
border-radius: var(--vp-radius);
background: #fbfcff;
color: inherit;
text-align: left;
font: inherit;
cursor: pointer;
display: grid;
gap: 8px;
align-content: start;
}
.vp-history-report-purpose-item:hover,
.vp-history-report-purpose-item:focus-visible {
border-color: rgba(22, 100, 255, 0.42);
box-shadow: 0 10px 24px rgba(24, 39, 75, 0.08);
outline: none;
}
.vp-history-report-purpose-item:disabled {
cursor: not-allowed;
opacity: 0.62;
}
.vp-history-report-purpose-item strong {
color: var(--vp-text);
font-size: 18px;
line-height: 24px;
font-weight: 700;
word-break: break-word;
}
.vp-history-report-purpose-item span {
color: var(--vp-text-muted);
font-size: 12px;
line-height: 18px;
}
.vp-history-report-purpose-item em {
color: var(--vp-primary);
font-size: 12px;
font-style: normal;
font-weight: 700;
}
.vp-history-report-cadence-summary {
padding: 14px;
border: 1px solid rgba(22, 100, 255, 0.18);
@@ -9705,6 +9776,8 @@ button.vp-realtime-command-item:focus-visible {
.vp-history-customer-export-steps,
.vp-history-report-templates,
.vp-history-report-template-grid,
.vp-history-report-purpose,
.vp-history-report-purpose-grid,
.vp-history-report-cadence,
.vp-history-report-cadence-grid,
.vp-history-saved-report,