From ca119a84134a4a5a67f3d8d7157165db6d86cbd8 Mon Sep 17 00:00:00 2001 From: HuangHai <10402852@qq.com> Date: Thu, 21 Aug 2025 16:39:15 +0800 Subject: [PATCH] 'commit' --- dsLightRag/static/Suno/music_progress.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dsLightRag/static/Suno/music_progress.html b/dsLightRag/static/Suno/music_progress.html index 97f68e60..5013726c 100644 --- a/dsLightRag/static/Suno/music_progress.html +++ b/dsLightRag/static/Suno/music_progress.html @@ -129,6 +129,13 @@ statusMessage.style.backgroundColor = '#e8f5e9'; statusMessage.style.borderColor = '#a5d6a7'; + // 确保进度为100% + progress = 100; + const progressFill = document.getElementById('progressFill'); + const progressText = document.getElementById('progressText'); + progressFill.style.width = `${progress}%`; + progressText.textContent = `${Math.round(progress)}%`; + // 显示播放器 const playerContainer = document.getElementById('playerContainer'); playerContainer.style.display = 'block';