mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 14:10:27 +08:00
解决文件上传无法播放问题
This commit is contained in:
parent
bd6ae251e4
commit
c8582a7547
@ -424,6 +424,7 @@ const Table = useTable({
|
||||
dict: dict.get("occupation"),
|
||||
dictColor: true,
|
||||
minWidth: 150,
|
||||
dictAllLevels: true, // 显示所有等级
|
||||
|
||||
// 带搜索组件
|
||||
search: {
|
||||
|
@ -22,8 +22,8 @@
|
||||
</template>
|
||||
|
||||
<!-- 视频 -->
|
||||
<template v-else-if="item.type === 'video' && item.url">
|
||||
<video :ref="setRefs('video')" :src="item.url" />
|
||||
<template v-else-if="item.type === 'video'">
|
||||
<video :ref="setRefs('video')" :src="item.url" :key="item.url" />
|
||||
</template>
|
||||
|
||||
<!-- 其他 -->
|
||||
@ -42,7 +42,7 @@
|
||||
<!-- 音频 -->
|
||||
<template v-if="item.type === 'audio'">
|
||||
<audio controls :ref="setRefs('audio')">
|
||||
<source :src="item.url" type="audio/mpeg" />
|
||||
<source :src="item.url" type="audio/mpeg" :key="item.url" />
|
||||
</audio>
|
||||
</template>
|
||||
|
||||
@ -220,25 +220,31 @@ const media = reactive({
|
||||
}
|
||||
|
||||
// 媒体元素
|
||||
const el = refs[props.item.type!];
|
||||
let el: HTMLVideoElement | HTMLAudioElement | undefined;
|
||||
|
||||
// 监听播放\暂停
|
||||
watch(
|
||||
() => props.item.isPlay,
|
||||
(val) => {
|
||||
if (val) {
|
||||
el.play();
|
||||
} else {
|
||||
el.pause();
|
||||
}
|
||||
}
|
||||
);
|
||||
if (!el) {
|
||||
el = refs[props.item.type!];
|
||||
|
||||
console.log(el);
|
||||
|
||||
// 监听播放完成
|
||||
el?.addEventListener("ended", () => {
|
||||
media.pause();
|
||||
});
|
||||
}
|
||||
|
||||
if (val) {
|
||||
el?.play();
|
||||
} else {
|
||||
el?.pause();
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
onMounted(() => {
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user