From fcd790b413d935ca1c82607a53d613d34503aa19 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Wed, 14 Jan 2026 11:43:43 +0800
Subject: [PATCH] feat(video): 添加视频文件断点续传和多格式支持功能

---
 src/main/resources/templates/febs/views/modules/ai/fileUpload/index.html |    9 +++------
 1 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/src/main/resources/templates/febs/views/modules/ai/fileUpload/index.html b/src/main/resources/templates/febs/views/modules/ai/fileUpload/index.html
index 613b626..9756198 100644
--- a/src/main/resources/templates/febs/views/modules/ai/fileUpload/index.html
+++ b/src/main/resources/templates/febs/views/modules/ai/fileUpload/index.html
@@ -539,15 +539,12 @@
                     },
                     success: function(response) {
                         if (response.code === 200 || response.success) {
-                            layer.msg('文件上传成功,页面将刷新', {icon: 1, time: 1000});
+                            layer.msg('文件上传成功', {icon: 1});
                             $('#uploadStatus').text('上传成功');
                             $('#uploadProgress').text('100%');
                             $('#progressFill').css('width', '100%').text('100%');
-                            
-                            // 刷新页面
-                            setTimeout(function() {
-                                location.reload();
-                            }, 1000);
+                            $('#playContainer').show();
+                            refreshFileList();
                         } else {
                             layer.msg('文件合并失败: ' + response.message, {icon: 2});
                             $('#uploadStatus').text('上传失败');

--
Gitblit v1.9.1