| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <div>
- <div class="space-y-4">
- {{-- 搜索和筛选 --}}
- <div class="bg-white dark:bg-gray-800 rounded-lg border border-gray-200 dark:border-gray-700 p-4 space-y-4">
- <div class="grid grid-cols-1 md:grid-cols-3 gap-4">
- {{-- 搜索框 --}}
- <div class="relative">
- <span class="absolute inset-y-0 left-0 pl-3 flex items-center text-gray-400">
- <svg class="h-5 w-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"></path>
- </svg>
- </span>
- <input
- wire:model.live.debounce="search"
- type="text"
- placeholder="搜索知识点..."
- class="w-full pl-10 pr-3 py-2 border border-gray-300 dark:border-gray-600 rounded-lg focus:ring-indigo-500 focus:border-indigo-500 dark:bg-gray-700 dark:text-gray-100"
- />
- </div>
- {{-- 学段筛选 --}}
- <div class="relative">
- <span class="absolute inset-y-0 left-0 pl-3 flex items-center text-gray-400">
- <svg class="h-5 w-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"></path>
- </svg>
- </span>
- <select
- wire:model.live="phaseFilter"
- class="w-full pl-10 pr-3 py-2 border border-gray-300 dark:border-gray-600 rounded-lg focus:ring-indigo-500 focus:border-indigo-500 dark:bg-gray-700 dark:text-gray-100 appearance-none"
- >
- <option value="">所有学段</option>
- @foreach($this->filterOptions['phases'] as $phase)
- <option value="{{ $phase }}">{{ $phase }}</option>
- @endforeach
- </select>
- </div>
- {{-- 类别筛选 --}}
- <div class="relative">
- <span class="absolute inset-y-0 left-0 pl-3 flex items-center text-gray-400">
- <svg class="h-5 w-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"></path>
- </svg>
- </span>
- <select
- wire:model.live="categoryFilter"
- class="w-full pl-10 pr-3 py-2 border border-gray-300 dark:border-gray-600 rounded-lg focus:ring-indigo-500 focus:border-indigo-500 dark:bg-gray-700 dark:text-gray-100 appearance-none"
- >
- <option value="">所有类别</option>
- @foreach($this->filterOptions['categories'] as $category)
- <option value="{{ $category }}">{{ $category }}</option>
- @endforeach
- </select>
- </div>
- </div>
- <div class="flex items-center justify-between pt-2 border-t border-gray-200 dark:border-gray-700">
- <div class="text-sm text-gray-600 dark:text-gray-400">
- 共 {{ count($filteredPoints) }} 个知识点
- </div>
- <button
- wire:click="clearSelection"
- class="inline-flex items-center gap-2 px-3 py-1 text-sm text-gray-600 hover:text-gray-800 dark:text-gray-400 dark:hover:text-gray-200"
- >
- <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
- </svg>
- 清空筛选
- </button>
- </div>
- </div>
- {{-- 知识点列表 --}}
- <div class="bg-white dark:bg-gray-800 rounded-lg border border-gray-200 dark:border-gray-700 overflow-hidden">
- @if($isLoading)
- <div class="flex items-center justify-center p-8">
- <svg class="animate-spin h-6 w-6 text-indigo-600" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
- <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
- <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
- </svg>
- <span class="ml-2 text-gray-600 dark:text-gray-300">加载中...</span>
- </div>
- @elseif(empty($filteredPoints))
- <div class="text-center p-8 text-gray-500 dark:text-gray-400">
- <svg class="mx-auto h-12 w-12 text-gray-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.172 16.172a4 4 0 015.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
- </svg>
- <p class="mt-2">没有找到匹配的知识点</p>
- </div>
- @else
- <div class="overflow-x-auto">
- <table class="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
- <thead class="bg-gray-50 dark:bg-gray-900">
- <tr>
- <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
- 知识点
- </th>
- <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
- 代码
- </th>
- <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
- 学段
- </th>
- <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
- 类别
- </th>
- <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
- 重要度
- </th>
- <th scope="col" class="px-6 py-3 text-right text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
- 操作
- </th>
- </tr>
- </thead>
- <tbody class="bg-white dark:bg-gray-800 divide-y divide-gray-200 dark:divide-gray-700">
- @foreach($filteredPoints as $point)
- <tr class="hover:bg-gray-50 dark:hover:bg-gray-700 {{ $selectedKpCode === $point['kp_code'] ? 'bg-indigo-50 dark:bg-indigo-900/20' : '' }}">
- <td class="px-6 py-4 whitespace-nowrap">
- <div class="flex items-center">
- <div>
- <div class="text-sm font-medium text-gray-900 dark:text-gray-100">
- {{ $point['cn_name'] ?? $point['kp_code'] }}
- </div>
- @if(!empty($point['description']))
- <div class="text-sm text-gray-500 dark:text-gray-400">
- {{ Str::limit($point['description'], 60) }}
- </div>
- @endif
- </div>
- </div>
- </td>
- <td class="px-6 py-4 whitespace-nowrap">
- <span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-300">
- {{ $point['kp_code'] }}
- </span>
- </td>
- <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-400">
- {{ $point['phase'] ?? '-' }}
- </td>
- <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-400">
- {{ $point['category'] ?? '-' }}
- </td>
- <td class="px-6 py-4 whitespace-nowrap">
- <div class="flex items-center">
- <div class="flex-1 bg-gray-200 dark:bg-gray-700 rounded-full h-2">
- <div
- class="bg-indigo-600 h-2 rounded-full"
- style="width: {{ ($point['importance'] ?? 0) * 20 }}%"
- ></div>
- </div>
- <span class="ml-2 text-sm text-gray-500 dark:text-gray-400">
- {{ $point['importance'] ?? 0 }}
- </span>
- </div>
- </td>
- <td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
- <button
- wire:click="selectKp('{{ $point['kp_code'] }}')"
- class="inline-flex items-center gap-1 px-3 py-1 text-sm font-medium text-indigo-600 hover:text-indigo-800 dark:text-indigo-400 dark:hover:text-indigo-200"
- >
- <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"></path>
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"></path>
- </svg>
- 查看
- </button>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- @endif
- </div>
- </div>
- </div>
|