@if (visible && currentEmployeeDetail) {
{{ currentEmployeeDetail.name.charAt(0) }}

近期负载

{{ workloadStatus.label }}
{{ currentEmployeeDetail.currentProjects }} 当前项目
核心项目: @if (currentEmployeeDetail.projectData.length > 0) {
@for (project of currentEmployeeDetail.projectData; track project.id) {
{{ project.name }}
}
} @else { 暂无活跃项目 }

能力标签

@if (currentEmployeeDetail.surveyCompleted) {
@for (tag of strengthTags; track tag) { {{ tag }} } @if (strengthTags.length === 0) { 暂无标签数据 }
@if (currentEmployeeDetail.surveyData?.answers; as answers) { @if (getCapabilitySummary(answers); as summary) {
周承接: {{ summary.capacity }}
接急单: {{ summary.urgent }}
} } } @else {
尚未完成能力问卷
}

项目日历分布

@if (currentEmployeeDetail.calendarData) {
{{ currentEmployeeDetail.calendarData.currentMonth | date:'yyyy年M月' }}
@for (day of currentEmployeeDetail.calendarData.days; track day.date.getTime()) {
{{ day.date.getDate() }}
@if (day.projectCount > 0) {
{{ day.projectCount }}个项目
}
}
今天
有项目
高负载
}
@if (currentEmployeeDetail.leaveRecords.length > 0) {
未来7天有 {{ currentEmployeeDetail.leaveRecords.length }} 条请假记录
}
@if (showFullSurvey && currentEmployeeDetail.surveyData) {

能力问卷详情

@for (answer of currentEmployeeDetail.surveyData.answers; track $index) {
Q{{$index + 1}}: {{ answer.question }}
{{ answer.answer || '未填写' }}
}
} } @if (showCalendarProjectList) {
} @if (showDesignerCalendar) {
}