|
@@ -618,7 +618,7 @@ export default defineComponent({
|
|
|
if(partIndex === 999) {
|
|
|
href += `&part-index=${partIndex}`
|
|
|
} else {
|
|
|
- href += `&part-name=${track}`
|
|
|
+ href += `&part-name=${encodeURIComponent(track || "")}`
|
|
|
}
|
|
|
// if (location.pathname.includes("accompany-teacher")) {
|
|
|
// href += `&systemType=teacher`;
|
|
@@ -1048,7 +1048,7 @@ export default defineComponent({
|
|
|
}
|
|
|
let extraParam: any = {
|
|
|
// 'part-index': currentColumn.value.xmlIndex || 0,
|
|
|
- 'part-name': currentColumn.value.track?.trim(),
|
|
|
+ 'part-name': encodeURIComponent(currentColumn.value.track?.trim() || ''),
|
|
|
musicRenderType,
|
|
|
|
|
|
albumId: route.query.tenantAlbumId || '', // 专辑编号
|