Add payment status filter dropdown (paid/unpaid/refunded/suspended)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-06 01:20:37 +08:00
parent 3c1715603d
commit 197c969e41
3 changed files with 72 additions and 9 deletions

View File

@@ -219,6 +219,27 @@ body {
height: 38px;
}
/* 筛选下拉 */
.filter-select {
height: 38px;
padding: 0 12px;
border: 2px solid #e5e7eb;
border-radius: 8px;
font-size: 13px;
font-weight: 600;
color: #475569;
background: rgba(255, 255, 255, 0.8);
outline: none;
cursor: pointer;
transition: all 0.3s ease;
flex-shrink: 0;
}
.filter-select:focus {
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.search-box input::placeholder { color: #9ca3af; }
.search-box input:focus {
border-color: #667eea;