question-check-scan-sheet.blade.php 5.3 KB

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