{{-- 页面标题和筛选 --}}

知识点题目数量统计

通过知识点筛选,汇总当前知识点和各个技能点的题目数量

{{-- 知识点筛选器 --}}
{{-- 统计概览 --}} @if(!empty($this->knowledgePointStatistics))
{{-- 总题目数 --}}

总题目数

{{ array_sum(array_map([$this, 'getTotalQuestions'], $this->knowledgePointStatistics)) }}

{{-- 直接题目数 --}}

直接题目数

{{ array_sum(array_map([$this, 'getDirectQuestions'], $this->knowledgePointStatistics)) }}

{{-- 子知识点题目数 --}}

子知识点题目数

{{ array_sum(array_map([$this, 'getChildrenQuestions'], $this->knowledgePointStatistics)) }}

{{-- 技能点题目数 --}}

技能点题目数

{{ array_sum(array_map([$this, 'getSkillQuestions'], $this->knowledgePointStatistics)) }}

@endif {{-- 知识点统计列表 --}}

{{ $selectedKpCode ? '知识点详情' : '所有知识点统计' }}

@forelse($this->knowledgePointStatistics as $stat) @if($showDetails && !empty($stat['children'])) @foreach($stat['children'] as $child) @if($showDetails && !empty($child['skills'])) @foreach($child['skills'] as $skill) @endforeach @endif @endforeach @endif @if($showDetails && !empty($stat['skills'])) @foreach($stat['skills'] as $skill) @endforeach @endif @empty @endforelse
知识点 总题目数 直接题目 子知识点题目 技能点数 技能点题目
{{ $stat['cn_name'] ?? $stat['kp_code'] }}
{{ $stat['kp_code'] }}
{{ $stat['total_questions'] ?? 0 }} {{ $stat['direct_questions'] ?? 0 }} {{ $stat['children_questions'] ?? 0 }} {{ $stat['skills_count'] ?? 0 }} {{ $stat['skills_total_questions'] ?? 0 }}
{{ $child['cn_name'] ?? $child['kp_code'] }}
{{ $child['kp_code'] }}
{{ $child['total_questions'] ?? 0 }} {{ $child['direct_questions'] ?? 0 }} {{ $child['children_questions'] ?? 0 }} {{ $child['skills_count'] ?? 0 }} {{ $child['skills_total_questions'] ?? 0 }}
{{ $skill['skill_code'] }}
{{ $skill['question_count'] ?? 0 }} - - 1 {{ $skill['question_count'] ?? 0 }}
{{ $skill['skill_code'] }}
{{ $skill['question_count'] ?? 0 }} - - 1 {{ $skill['question_count'] ?? 0 }}
暂无统计数据