grading-scan-sheet.blade.php 5.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. @php
  2. $boxCounter = app(\App\Support\GradingMarkBoxCounter::class);
  3. // 按当前试卷真实题目动态生成判题卡条目(题量与方框数)
  4. $scanSheetItems = [];
  5. $countBlanks = fn($text): int => $boxCounter->countFillBlanks($text);
  6. $countAnswerBoxes = fn($stem = '', $solution = ''): int => $boxCounter->countAnswerMarkBoxes($stem, $solution);
  7. foreach (($questions['choice'] ?? []) as $q) {
  8. $scanSheetItems[] = ['no' => (int) ($q->question_number ?? 0), 'box_count' => 1];
  9. }
  10. foreach (($questions['fill'] ?? []) as $q) {
  11. $scanSheetItems[] = ['no' => (int) ($q->question_number ?? 0), 'box_count' => $countBlanks($q->content ?? '')];
  12. }
  13. foreach (($questions['answer'] ?? []) as $q) {
  14. $scanSheetItems[] = [
  15. 'no' => (int) ($q->question_number ?? 0),
  16. 'box_count' => $countAnswerBoxes($q->content ?? '', $q->solution ?? ''),
  17. ];
  18. }
  19. usort($scanSheetItems, static function ($a, $b) {
  20. return ($a['no'] <=> $b['no']);
  21. });
  22. $scanSheetItems = array_values(array_filter($scanSheetItems, static function ($item) {
  23. return (int) ($item['no'] ?? 0) > 0;
  24. }));
  25. $assembleTypeLabel = $pdfMeta['assemble_type_label'] ?? null;
  26. $showAssembleType = !empty($assembleTypeLabel) && $assembleTypeLabel !== '未知类型';
  27. $scanPaperCode = (string) ($pdfMeta['paper_id_num'] ?? $pdfMeta['exam_code'] ?? '');
  28. if ($scanPaperCode === '' && !empty($paper->paper_id)) {
  29. $scanPaperCode = preg_replace('/^paper_/', '', (string) $paper->paper_id) ?: (string) $paper->paper_id;
  30. }
  31. $totalItems = count($scanSheetItems);
  32. $leftCount = (int) ceil($totalItems / 2);
  33. $leftItems = array_slice($scanSheetItems, 0, $leftCount);
  34. $rightItems = array_slice($scanSheetItems, $leftCount);
  35. @endphp
  36. <div class="page scan-sheet-page" style="page-break-before: always; break-before: page; width:100%; max-width:100%; margin:0 auto; padding:0 8px; box-sizing:border-box;">
  37. <div class="scan-sheet-header" style="text-align:center;margin-bottom:1.5rem;border-bottom:2px solid #000;padding-bottom:1rem;">
  38. <div style="font-size:22px;font-weight:bold;">判题卡</div>
  39. @if($scanPaperCode !== '')
  40. <div class="scan-sheet-paper-code" style="margin-top:6px;font-size:18px;font-weight:700;letter-spacing:0.4px;">{{ $scanPaperCode }}</div>
  41. @endif
  42. <div style="display:flex;justify-content:space-between;font-size:14px;margin-top:8px;">
  43. <span>老师:{{ $teacher['name'] ?? '________' }}</span>
  44. <span>年级:@formatGrade($student['grade'] ?? '________')</span>
  45. @if($showAssembleType)
  46. <span>类型:{{ $assembleTypeLabel }}</span>
  47. @endif
  48. <span>姓名:{{ $student['name'] ?? '________' }}</span>
  49. <span>得分:________</span>
  50. </div>
  51. </div>
  52. <div class="scan-sheet-hint" style="font-size:14px;color:#444;margin-bottom:14px;line-height:1.5;">提示:请根据答案和解析进行批改,在回答正确的 □ 内划 / ,在回答错误的 □ 内打 X 或置空</div>
  53. <div class="scan-sheet-two-cols" style="display:flex;align-items:flex-start;gap:18px;">
  54. <div class="scan-sheet-col" style="flex:1 1 0;display:grid;row-gap:12px;">
  55. @foreach($leftItems as $item)
  56. @php
  57. $questionNo = (int) ($item['no'] ?? 0);
  58. $boxCount = max(1, (int) ($item['box_count'] ?? 1));
  59. @endphp
  60. <div class="scan-sheet-item" style="display:flex;align-items:center;min-height:24px;">
  61. <span class="scan-sheet-no" style="font-weight:700;font-size:14px;line-height:1.2;white-space:nowrap;margin-right:2px;">题目 {{ $questionNo }}.</span>
  62. <span class="scan-sheet-marks" style="display:inline-flex;align-items:center;gap:0;">
  63. @for($i = 0; $i < $boxCount; $i++)
  64. <span class="scan-grade-box" style="display:inline-block;width:21px;height:21px;border:1px solid #333;box-sizing:border-box;background:#fff;vertical-align:middle;margin-right:16px;"></span>
  65. @endfor
  66. </span>
  67. </div>
  68. @endforeach
  69. </div>
  70. <div class="scan-sheet-col" style="flex:1 1 0;display:grid;row-gap:12px;">
  71. @foreach($rightItems as $item)
  72. @php
  73. $questionNo = (int) ($item['no'] ?? 0);
  74. $boxCount = max(1, (int) ($item['box_count'] ?? 1));
  75. @endphp
  76. <div class="scan-sheet-item" style="display:flex;align-items:center;min-height:24px;">
  77. <span class="scan-sheet-no" style="font-weight:700;font-size:14px;line-height:1.2;white-space:nowrap;margin-right:2px;">题目 {{ $questionNo }}.</span>
  78. <span class="scan-sheet-marks" style="display:inline-flex;align-items:center;gap:0;">
  79. @for($i = 0; $i < $boxCount; $i++)
  80. <span class="scan-grade-box" style="display:inline-block;width:21px;height:21px;border:1px solid #333;box-sizing:border-box;background:#fff;vertical-align:middle;margin-right:16px;"></span>
  81. @endfor
  82. </span>
  83. </div>
  84. @endforeach
  85. </div>
  86. </div>
  87. @if($totalItems === 0)
  88. <div class="scan-sheet-empty" style="color:#888;font-size:13px;margin-top:6px;">暂无可渲染题目</div>
  89. @endif
  90. </div>