返回列表

试卷详情

查看和编辑试卷信息,管理试卷中的题目

@if(empty($paperDetail))
试卷不存在或已被删除
@else

{{ $paperDetail['paper_name'] ?? '未命名试卷' }}

{{ $this->getStatusLabel($paperDetail['status']) }} {{ $paperDetail['difficulty_category'] }}
题目数量
{{ $paperDetail['question_count'] }}
总分
{{ $paperDetail['total_score'] }}
创建时间
{{ \Carbon\Carbon::parse($paperDetail['created_at'])->format('Y-m-d') }}
{{ \Carbon\Carbon::parse($paperDetail['created_at'])->format('H:i') }}

试卷题目

{{ count($paperDetail['questions']) }} 题
@forelse($paperDetail['questions'] as $question)
第 {{ $question['question_number'] }} 题 {{ $question['question_type'] }} {{ $question['knowledge_point'] }} {{ $question['difficulty_label'] }} {{ $question['score'] }} 分 {{ $question['estimated_time'] }} 秒
题干:
{!! nl2br(e($question['stem'])) !!}
@if($question['answer'])
答案:
{!! nl2br(e($question['answer'])) !!}
@endif @if($question['solution'])
解析:
{!! nl2br(e($question['solution'])) !!}
@endif
@if($question['question_code'])
题目编号:{{ $question['question_code'] }}
@endif
@empty

试卷中暂无题目

@endforelse
@endif
@if($editingExamId) @endif @if($showAddQuestionModal) @endif