{{-- 搜索和筛选 --}}
{{-- 搜索框 --}}
{{-- 学段筛选 --}}
{{-- 类别筛选 --}}
共 {{ count($filteredPoints) }} 个知识点
{{-- 知识点列表 --}}
@if($isLoading)
加载中...
@elseif(empty($filteredPoints))

没有找到匹配的知识点

@else
@foreach($filteredPoints as $point) @endforeach
知识点 代码 学段 类别 重要度 操作
{{ $point['cn_name'] ?? $point['kp_code'] }}
@if(!empty($point['description']))
{{ Str::limit($point['description'], 60) }}
@endif
{{ $point['kp_code'] }} {{ $point['phase'] ?? '-' }} {{ $point['category'] ?? '-' }}
{{ $point['importance'] ?? 0 }}
@endif