52 lines
2.9 KiB
PHP
52 lines
2.9 KiB
PHP
<div class="space-y-4">
|
|
<div class="rounded-lg bg-danger-50 dark:bg-danger-900/20 p-4">
|
|
<div class="flex items-start">
|
|
<div class="flex-shrink-0">
|
|
<svg class="h-5 w-5 text-danger-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
|
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.28 7.22a.75.75 0 00-1.06 1.06L8.94 10l-1.72 1.72a.75.75 0 101.06 1.06L10 11.06l1.72 1.72a.75.75 0 101.06-1.06L11.06 10l1.72-1.72a.75.75 0 00-1.06-1.06L10 8.94 8.28 7.22z" clip-rule="evenodd" />
|
|
</svg>
|
|
</div>
|
|
<div class="ml-3 flex-1">
|
|
<h3 class="text-sm font-medium text-danger-800 dark:text-danger-200">
|
|
文档转换失败
|
|
</h3>
|
|
<div class="mt-2 text-sm text-danger-700 dark:text-danger-300 space-y-1">
|
|
<p><strong>文档:</strong>{{ $document->title }}</p>
|
|
<p><strong>文件名:</strong>{{ $document->display_file_name }}</p>
|
|
<p><strong>失败时间:</strong>{{ $document->updated_at->format('Y年m月d日 H:i:s') }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 class="text-sm font-medium text-gray-900 dark:text-gray-100 mb-2">错误信息:</h4>
|
|
<div class="rounded-lg bg-gray-50 dark:bg-gray-800 p-4">
|
|
<pre class="text-xs text-gray-700 dark:text-gray-300 whitespace-pre-wrap break-words font-mono">{{ $error }}</pre>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="rounded-lg bg-info-50 dark:bg-info-900/20 p-4">
|
|
<div class="flex">
|
|
<div class="flex-shrink-0">
|
|
<svg class="h-5 w-5 text-info-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
|
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z" clip-rule="evenodd" />
|
|
</svg>
|
|
</div>
|
|
<div class="ml-3 flex-1">
|
|
<h3 class="text-sm font-medium text-info-800 dark:text-info-200">
|
|
常见原因
|
|
</h3>
|
|
<div class="mt-2 text-sm text-info-700 dark:text-info-300">
|
|
<ul class="list-disc list-inside space-y-1">
|
|
<li>文件损坏或格式异常</li>
|
|
<li>PDF 扫描件或纯图片文档无法提取文本内容</li>
|
|
<li>文档过大或图片过多,请优化后重新上传</li>
|
|
<li>您可以点击 "重试转换" 按钮重新尝试</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|