diff --git a/src/routes/import/local/+page.svelte b/src/routes/import/local/+page.svelte
index 2df5a9a..033fb86 100644
--- a/src/routes/import/local/+page.svelte
+++ b/src/routes/import/local/+page.svelte
@@ -1,12 +1,13 @@
@@ -25,7 +26,13 @@
- { $failed.length }个文件导入失败 { $success.length }个文件导入成功
+ 待处理 {$fileList.length} 个文件
+ {#if $success.length > 0}
+ {$success.length} 个文件导入成功
+ {/if}
+ {#if $failed.length > 0}
+ {$failed.length} 个文件导入失败
+ {/if}
\ No newline at end of file
+