feat(M08-C): 补会员检索与员工概况

This commit is contained in:
Codex
2026-08-10 10:35:44 +08:00
parent 8b46863cd8
commit 1b0839e881
22 changed files with 758 additions and 74 deletions
+56
View File
@@ -38,6 +38,62 @@
padding: 18rpx;
}
.member-search-row {
align-items: center;
display: grid;
gap: 12rpx;
grid-template-columns: 1fr auto;
}
.member-search-row button {
margin: 0;
}
.selected-member {
background: #ecfdf5;
border-radius: 12rpx;
color: #166534;
font-size: 23rpx;
margin-top: 12rpx;
padding: 14rpx;
}
.member-results {
border: 1rpx solid #e2e8f0;
border-radius: 14rpx;
margin-top: 12rpx;
max-height: 360rpx;
}
.member-option {
align-items: center;
border-bottom: 1rpx solid #f1f5f9;
display: flex;
justify-content: space-between;
padding: 16rpx;
}
.member-option.active {
background: #eff6ff;
}
.member-option strong,
.member-option text {
display: block;
font-size: 23rpx;
}
.member-option > text,
.member-option view text,
.empty-members {
color: #64748b;
}
.empty-members {
font-size: 23rpx;
padding: 18rpx 0;
}
.datetime-row {
display: grid;
gap: 14rpx;