当前视图 {{ filteredActions.length }} 共 {{ actions.length }} 项
进行中 {{ inProgressCount }} 正在推进
阻塞 {{ blockedCount }} 等待处理
已逾期 {{ overdueCount }} 未完成且超期
@if (loadWarning) {
{{ loadWarning }};行动项仍可继续查看和更新。
}
@if (hasActiveFilters) { }
@if (loading) {
} @else if (error) { } @else if (!filteredActions.length) { } @else if (viewMode === 'table') {
@for (action of filteredActions; track action.id) { }
行动项 类型 / 来源 优先级 状态 负责人 期限 验证指标 查看
{{ action.title }} {{ action.description || '暂无补充说明' }}
{{ actionTypeLabel(action.actionType) }} {{ sourceLabel(action) }} {{ priorityLabel(action.priority) }} {{ statusLabel(action.status) }} {{ ownerLabel(action.assigneeUserId) }} {{ date(action.dueAt) }} {{ action.validationMetric || '待定义' }}
} @else {
@for (lane of lanes; track lane.id) {
{{ lane.label }} {{ lane.description }}
{{ actionsForLane(lane).length }}
@for (action of actionsForLane(lane); track action.id) { } @empty {
暂无行动项
}
}
}
@if (createPanelOpen) { }