admin_szolgáltatók_

This commit is contained in:
Roo
2026-07-01 02:27:38 +00:00
parent 189cbfd7ca
commit 6e627d0ebe
491 changed files with 20965 additions and 9703 deletions

View File

@@ -84,6 +84,8 @@
<option value="manual">Kézi</option>
<option value="ocr">OCR</option>
<option value="import">Import</option>
<option value="bot">Bot (Staging)</option>
<option value="verified_org">Szervezet</option>
</select>
<!-- Sort -->
@@ -139,7 +141,10 @@
</span>
</td>
<td class="px-6 py-4">
<code class="text-xs font-mono text-slate-400 bg-slate-700/50 px-2 py-0.5 rounded">{{ provider.source }}</code>
<div class="flex items-center gap-1.5">
<code class="text-xs font-mono text-slate-400 bg-slate-700/50 px-2 py-0.5 rounded">{{ provider.source }}</code>
<span v-if="provider.source_table" class="text-[10px] font-mono text-slate-500 bg-slate-700/30 px-1.5 py-0.5 rounded">{{ provider.source_table }}</span>
</div>
</td>
<td class="px-6 py-4">
<div class="flex items-center gap-2">
@@ -230,6 +235,7 @@ interface ProviderListItem {
category: string | null
status: string
source: string
source_table?: string
validation_score: number
added_by_user_id: number | null
created_at: string | null
@@ -242,6 +248,7 @@ interface ProviderStats {
rejected: number
flagged: number
total_validations: number
staging_pending?: number
}
const loading = ref(true)
@@ -254,6 +261,7 @@ const stats = ref<ProviderStats>({
rejected: 0,
flagged: 0,
total_validations: 0,
staging_pending: 0,
})
const toast = ref('')
let searchTimeout: ReturnType<typeof setTimeout> | null = null