|
|
@@ -20,6 +20,7 @@ export default defineComponent({
|
|
|
rows: 20,
|
|
|
musicSheetCategoriesId: state.musicSheetCategoriesId,
|
|
|
recentFlag: props.recentFlag ? true : null,
|
|
|
+ excludeMusicId: state.examSongId,
|
|
|
});
|
|
|
const data = reactive({
|
|
|
list: [] as any[],
|
|
|
@@ -47,6 +48,7 @@ export default defineComponent({
|
|
|
});
|
|
|
|
|
|
const openAccomapina = (item: any) => {
|
|
|
+ if (item.id === state.examSongId) return;
|
|
|
// 暂停播放
|
|
|
togglePlay("paused");
|
|
|
postMessage({
|