feat(orders): 订单页改双栏——左队列/右详情,含分层预览与整体预览、单订单/全部导出
This commit is contained in:
@@ -2425,3 +2425,29 @@ body.resizing .studio-panel {
|
||||
.orders-hint { color: var(--text-secondary); font-size: 13px; margin: 0 0 18px; line-height: 1.5; }
|
||||
.orders-input { width: 100%; box-sizing: border-box; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); color: var(--text-primary); font-size: 14px; margin-bottom: 12px; }
|
||||
.orders-input:focus { outline: none; border-color: var(--border-focus); }
|
||||
|
||||
/* ── OrdersPage 双栏:左订单队列 / 右详情 ────────── */
|
||||
.orders-layout { display: flex; gap: 20px; align-items: flex-start; max-width: 1280px; }
|
||||
.orders-queue { width: 300px; flex-shrink: 0; background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; align-self: stretch; max-height: calc(100vh - 140px); display: flex; flex-direction: column; }
|
||||
.orders-queue-head { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--border); font-weight: 600; color: var(--text-primary); }
|
||||
.orders-queue-list { flex: 1; overflow: auto; padding: 8px; }
|
||||
.orders-q-item { display: block; width: 100%; text-align: left; background: transparent; border: 1px solid transparent; border-radius: var(--radius-sm); padding: 10px 12px; margin-bottom: 6px; cursor: pointer; }
|
||||
.orders-q-item:hover { background: var(--bg-panel-alt); }
|
||||
.orders-q-item.active { border-color: var(--accent); background: var(--accent-light); }
|
||||
.orders-q-item-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
|
||||
.orders-q-item-sub { color: var(--text-muted); font-size: 12px; margin-top: 4px; }
|
||||
.orders-detail { flex: 1; min-width: 0; }
|
||||
.orders-detail-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
|
||||
.orders-detail-title { margin: 0 0 6px; font-size: 20px; color: var(--text-primary); }
|
||||
.orders-detail-meta { color: var(--text-secondary); font-size: 12px; margin-left: 12px; }
|
||||
.orders-detail-actions { display: flex; align-items: center; gap: 8px; }
|
||||
.orders-preview-block { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; }
|
||||
.orders-preview-label { color: var(--text-secondary); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
|
||||
.orders-overall-img { max-width: 100%; max-height: 60vh; display: block; border-radius: var(--radius-sm); border: 1px solid var(--border); }
|
||||
.layer-canvas { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-sm); background-size: cover; }
|
||||
.layer-el { position: absolute; object-fit: contain; transform-origin: center; pointer-events: none; }
|
||||
.orders-layer-list { display: flex; flex-wrap: wrap; gap: 12px; }
|
||||
.orders-layer-item { width: 220px; }
|
||||
.orders-layer-thumb { box-shadow: var(--shadow-sm); }
|
||||
.orders-layer-name { color: var(--text-secondary); font-size: 12px; margin-top: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||
.nav-btn-label.active { color: var(--accent); font-weight: 600; }
|
||||
|
||||
Reference in New Issue
Block a user