@if($loading)
正在加载推荐题目...
@else

{{ $this->getTitle() }}

@if(!empty($knowledgePoint))

基于知识点 {{ $knowledgePoint['cn_name'] }} 为你智能推荐练习题目

@endif

推荐题目总数

{{ count($recommendedQuestions) }}

@if(!empty($recommendedQuestions))
@foreach($recommendedQuestions as $index => $question)
{{ $index + 1 }} {{ $this->getDifficultyLabel($question['difficulty'] ?? 'medium') }} {{ $question['question_type'] ?? '练习题' }} {{ $question['score'] ?? 5 }}分

{{ $question['stem'] ?? $question['content'] ?? '题目内容' }}

@if(isset($question['content']) && $question['content'] !== $question['stem'])

{{ $question['content'] }}

@endif
{{ $knowledgePoint['cn_name'] ?? $kpCode }} 预计时间: {{ $question['difficulty'] === 'easy' ? '3' : ($question['difficulty'] === 'hard' ? '8' : '5') }}分钟
@endforeach

显示 1{{ min(10, count($recommendedQuestions)) }}{{ count($recommendedQuestions) }} 道题目

@else

暂无推荐题目

系统正在为你生成推荐题目,请稍后再试

@endif @endif