|
@@ -475,10 +475,10 @@ export default defineComponent({
|
|
|
const musicImg = computed(() => {
|
|
|
let imgs: any = [];
|
|
|
if (data.showMusicImg === 'first') {
|
|
|
- const img = activeItem.value?.musicFirstSvg;
|
|
|
+ const img = activeItem.value?.musicFirstImg;
|
|
|
imgs = img ? img.split(',') : [];
|
|
|
} else if (data.showMusicImg === 'fixed') {
|
|
|
- const img = activeItem.value?.musicJianSvg;
|
|
|
+ const img = activeItem.value?.musicJianImg;
|
|
|
imgs = img ? img.split(',') : [];
|
|
|
} else if (data.showMusicImg === 'staff') {
|
|
|
const img = activeItem.value?.musicImg || activeItem.value?.musicSvg;
|