|
@@ -1182,7 +1182,9 @@ export default defineComponent({
|
|
if (!data.multiTracksSelection || data.multiTracksSelection.trim() == '' || data.multiTracksSelection.trim() == 'NULL') {
|
|
if (!data.multiTracksSelection || data.multiTracksSelection.trim() == '' || data.multiTracksSelection.trim() == 'NULL') {
|
|
multiTracksSelection.push('')
|
|
multiTracksSelection.push('')
|
|
} else {
|
|
} else {
|
|
- multiTracksSelection = data.multiTracksSelection.split(',')
|
|
|
|
|
|
+ data.multiTracksSelection.split(',').forEach((next: any) => {
|
|
|
|
+ multiTracksSelection.push(next.trim())
|
|
|
|
+ })
|
|
}
|
|
}
|
|
let names = state.partListNames.map((next: any) => next.label)
|
|
let names = state.partListNames.map((next: any) => next.label)
|
|
multiTracksSelection = names.filter((next: any) => multiTracksSelection.includes(next.toLocaleUpperCase()))
|
|
multiTracksSelection = names.filter((next: any) => multiTracksSelection.includes(next.toLocaleUpperCase()))
|
|
@@ -1211,10 +1213,11 @@ export default defineComponent({
|
|
if (forms.musicSheetType == 'CONCERT') {
|
|
if (forms.musicSheetType == 'CONCERT') {
|
|
existSoundList.forEach((next: any) => {
|
|
existSoundList.forEach((next: any) => {
|
|
if (next.audioPlayType == 'PLAY') {
|
|
if (next.audioPlayType == 'PLAY') {
|
|
- if (!next.track || next.track.trim() == '') {
|
|
|
|
- next.track = ''
|
|
|
|
|
|
+ let track = ''
|
|
|
|
+ if (next.track) {
|
|
|
|
+ track = next.track.trim()
|
|
}
|
|
}
|
|
- if (next.track == item.value) {
|
|
|
|
|
|
+ if (track == item.value) {
|
|
audioFileUrl = next.audioFileUrl
|
|
audioFileUrl = next.audioFileUrl
|
|
musicalInstrumentId = next.musicalInstrumentId
|
|
musicalInstrumentId = next.musicalInstrumentId
|
|
}
|
|
}
|