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

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