v0.8.2: DatePicker/Select 暗色主题、公告跑马灯、Toast 全局化、失败原因 tooltip v0.8.3: 团队详情抽屉→弹窗重构 + 修改秒数池功能 + member_count 修复 v0.8.4: AdminAuditLog 模型 + 12 处管理操作埋点 + 日志查询页面(/admin/logs) 审计日志覆盖所有管理员 mutation 操作(充值、修改额度、创建/禁用用户等), 记录操作人、变更前后值、IP 地址,支持按操作类型/操作人/日期筛选。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
55 lines
754 B
CSS
55 lines
754 B
CSS
.layout {
|
|
display: flex;
|
|
height: 100%;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.main {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.contentArea {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.emptyArea {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.emptyHint {
|
|
color: var(--color-text-disabled);
|
|
font-size: 14px;
|
|
opacity: 0.4;
|
|
user-select: none;
|
|
}
|
|
|
|
.taskList {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 20px;
|
|
padding: 24px 16px;
|
|
}
|
|
|
|
.loadMoreWrap {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.loadMoreText {
|
|
color: var(--color-text-disabled);
|
|
font-size: 12px;
|
|
}
|