From 579cadd68706879211dfe3b5fcd7dc02b980f026 Mon Sep 17 00:00:00 2001 From: dj <1042039504@qq.com> Date: Thu, 12 Jun 2025 11:42:09 +0800 Subject: [PATCH] =?UTF-8?q?refactor(components):=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E4=B8=8A=E4=BC=A0=E6=88=90=E5=8A=9F=E6=8F=90?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/FileUpload.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/FileUpload.vue b/src/components/FileUpload.vue index fa95fc4..c131907 100644 --- a/src/components/FileUpload.vue +++ b/src/components/FileUpload.vue @@ -137,10 +137,9 @@ const startUpload = (files) => { // 使用 Promise.all 监听所有文件上传完成 Promise.all(uploadPromises.value) .then(() => { - ElMessage.success('所有文件上传完成!'); ElNotification({ title: '提示', - message: '文件上传成功', + message: '所有文件上传完成!', type: 'success' }) files = []; // 清空文件列表