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';