feat(M08-D): 补后台订单运营

This commit is contained in:
Codex
2026-08-10 11:52:25 +08:00
parent 3502f5b5f7
commit 20a292e4ce
10 changed files with 619 additions and 37 deletions
+79
View File
@@ -1325,6 +1325,77 @@ textarea {
align-items: center;
}
.orders-page,
.order-detail-stack {
display: grid;
gap: 14px;
}
.order-toolbar h3,
.drawer-section-title h3 {
margin: 0;
}
.order-page-summary {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 10px;
padding: 12px 14px;
border-bottom: 1px solid #e6ebf2;
background: #f8fafc;
}
.order-page-summary span {
display: grid;
gap: 4px;
padding: 10px 12px;
background: #fff;
border: 1px solid #e1e8f0;
border-radius: 8px;
}
.order-page-summary small {
color: #69788c;
}
.order-page-summary strong {
color: #172033;
font-size: 18px;
}
.drawer-section-title {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-top: 8px;
padding-top: 16px;
border-top: 1px solid #e6ebf2;
}
.history-card {
display: grid;
gap: 4px;
padding: 10px 12px;
border: 1px solid #e1e8f0;
border-radius: 8px;
background: #f8fafc;
}
.history-card span,
.history-card small {
color: #69788c;
font-size: 12px;
}
.history-card code {
overflow: hidden;
color: #526177;
font-size: 11px;
text-overflow: ellipsis;
white-space: nowrap;
}
.el-button {
border-radius: 8px;
}
@@ -1424,6 +1495,10 @@ textarea {
grid-template-columns: repeat(4, minmax(76px, 1fr));
}
.order-page-summary {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.trend-row {
grid-template-columns: 92px minmax(80px, 1fr);
}
@@ -1524,6 +1599,10 @@ textarea {
grid-column: span 2;
}
.order-page-summary {
grid-template-columns: 1fr;
}
.toolbar-actions {
justify-content: flex-end;
}