{{-- 页面标题 --}}

学生仪表板

全面展示学生的学习分析数据,包括掌握度、技能熟练度、提分预测和学习路径

{{-- 错误提示 --}} @if ($errorMessage)

加载错误

{{ $errorMessage }}

@endif {{-- 加载状态 --}} @if ($isLoading)
正在加载数据...
@else {{-- 快速概览卡片 --}}
{{-- 掌握度概览 --}} @if (isset($dashboardData['mastery']['overview']))
平均掌握度
{{ number_format($dashboardData['mastery']['overview']['average_mastery_level'] * 100, 1) }}%
已掌握: {{ $dashboardData['mastery']['overview']['mastered_knowledge_points'] }} 薄弱点: {{ $dashboardData['mastery']['overview']['weak_knowledge_points'] }}
@endif {{-- 技能熟练度概览 --}} @if (isset($dashboardData['skill']['summary']))
技能熟练度
{{ number_format($dashboardData['skill']['summary']['average_proficiency_level'] * 100, 1) }}%
技能总数: {{ $dashboardData['skill']['summary']['total_skills'] }} 练习题: {{ $dashboardData['skill']['summary']['total_questions_attempted'] }}
@endif {{-- 提分潜力 --}} @if (isset($dashboardData['prediction']['quick']))
预期提分
+{{ $dashboardData['prediction']['quick']['quick_prediction']['improvement_potential'] ?? 0 }}
预计学习: {{ $dashboardData['prediction']['quick']['quick_prediction']['estimated_study_hours'] ?? 0 }}小时 置信度: {{ number_format(($dashboardData['prediction']['quick']['quick_prediction']['confidence_level'] ?? 0) * 100, 0) }}%
@endif {{-- 学习路径 --}} @if (isset($dashboardData['learning_path']['analytics']))
活跃路径
{{ $dashboardData['learning_path']['analytics']['active_paths'] ?? 0 }}
已完成: {{ $dashboardData['learning_path']['analytics']['completed_paths'] ?? 0 }} 效率: {{ number_format(($dashboardData['learning_path']['analytics']['average_efficiency_score'] ?? 0) * 100, 0) }}%
@endif
{{-- 主要内容区域 --}}
{{-- 掌握度分析 --}}

知识点掌握度

@if (isset($dashboardData['mastery']['overview']['total_knowledge_points']))
总知识点数 {{ $dashboardData['mastery']['overview']['total_knowledge_points'] }}
{{ $dashboardData['mastery']['overview']['mastered_knowledge_points'] }}
已掌握 (≥85%)
{{ $dashboardData['mastery']['overview']['good_knowledge_points'] }}
良好 (70-85%)
{{ $dashboardData['mastery']['overview']['weak_knowledge_points'] }}
薄弱 (<50%)
@if (!empty($dashboardData['mastery']['overview']['weak_knowledge_points']))

薄弱知识点

@foreach (array_slice($dashboardData['mastery']['overview']['weak_knowledge_points'], 0, 5) as $weak)
{{ $weak['kp_code'] }}
{{ number_format($weak['mastery_level'] * 100, 1) }}%
@endforeach
@endif
@else
暂无掌握度数据
@endif
{{-- 技能熟练度 --}}

技能熟练度

@if (isset($dashboardData['skill']['proficiency']['data']))
@foreach (array_slice($dashboardData['skill']['proficiency']['data'], 0, 5) as $skill)
{{ $skill['skill_name'] }}
{{ number_format($skill['proficiency_level'] * 100, 1) }}%
{{ $skill['total_questions_attempted'] }}题
@endforeach
@else
暂无技能数据
@endif
{{-- 技能熟练度雷达图 --}}

技能熟练度雷达图

{{-- 提分预测和学习路径 --}}
{{-- 提分预测 --}}

提分预测

@if (isset($dashboardData['prediction']['list']['predictions']))
@foreach (array_slice($dashboardData['prediction']['list']['predictions'], 0, 3) as $prediction)
{{ $prediction['target_entity'] }}
{{ date('m-d', strtotime($prediction['prediction_date'])) }}
当前: {{ $prediction['current_score'] }}分 → {{ $prediction['predicted_score'] }}分
+{{ number_format($prediction['predicted_score'] - $prediction['current_score'], 1) }}分
@endforeach
@else
暂无预测数据
@endif
{{-- 学习路径 --}}

学习路径

@if (isset($dashboardData['learning_path']['list']['paths']))
@foreach (array_slice($dashboardData['learning_path']['list']['paths'], 0, 3) as $path)
{{ $path['target_kp_code'] }}
{{ $path['status'] }}
完成度: {{ number_format($path['completion_percentage'], 0) }}% 预计: {{ $path['estimated_hours'] }}小时
@endforeach
@else
暂无学习路径数据
@endif
{{-- 掌握度热力图 --}}

知识点掌握度热力图

{{-- 知识点依赖关系图 --}}

知识点依赖关系图

{{-- 推荐学习路径 --}} @if (isset($dashboardData['learning_path']['recommendations']['recommendations']))

推荐学习路径

@foreach ($dashboardData['learning_path']['recommendations']['recommendations'] as $recommendation)
{{ $recommendation['target_kp_name'] }}
{{ $recommendation['target_kp_code'] }}
当前掌握度 {{ number_format($recommendation['current_mastery'] * 100, 1) }}%

{{ $recommendation['reason'] }}

@endforeach
@endif @endif {{-- 通知脚本 --}}