|
@@ -64,9 +64,9 @@ export const useMp3s = async (detail: MusicSheelDetail) => {
|
|
|
} catch (error) {}
|
|
|
}
|
|
|
// 伴奏
|
|
|
- const backgroundSong = detail.metronomeUrl || ''
|
|
|
+ const backgroundSong = encodeURI(detail.metronomeUrl || '')
|
|
|
// 原音
|
|
|
- const musicSong = activebg?.audioFileUrl|| ''
|
|
|
+ const musicSong = encodeURI(activebg?.audioFileUrl|| '')
|
|
|
// 兼容未修改之前
|
|
|
runtime.songs = {
|
|
|
background: backgroundSong ? backgroundSong + '?t=background' : '',
|