@if (count($this->tuningQuestionIds) === 0)
暂无记录,请先在待入库质检页执行入库。
@else
@foreach ($this->tuningQuestionIds as $qid)
@php
$row = \App\Models\Question::query()->find($qid);
$stemSnippet = $row ? \Illuminate\Support\Str::limit(strip_tags((string) $row->stem), 80) : '(无正文)';
$diffLabel = $row ? number_format(max(0, min(0.9, (float) $row->difficulty)), 2, '.', '') : '—';
@endphp
-
@endforeach
@endif
@if (! $this->selectedQuestionId)
请从左侧选择一道题。
@else
当前 question_id = {{ $this->selectedQuestionId }}
确定更新
@endif