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"),
|
dict: dict.get("occupation"),
|
||||||
dictColor: true,
|
dictColor: true,
|
||||||
minWidth: 150,
|
minWidth: 150,
|
||||||
|
dictAllLevels: true, // 显示所有等级
|
||||||
|
|
||||||
// 带搜索组件
|
// 带搜索组件
|
||||||
search: {
|
search: {
|
||||||
|
@ -22,8 +22,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<!-- 视频 -->
|
<!-- 视频 -->
|
||||||
<template v-else-if="item.type === 'video' && item.url">
|
<template v-else-if="item.type === 'video'">
|
||||||
<video :ref="setRefs('video')" :src="item.url" />
|
<video :ref="setRefs('video')" :src="item.url" :key="item.url" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<!-- 其他 -->
|
<!-- 其他 -->
|
||||||
@ -42,7 +42,7 @@
|
|||||||
<!-- 音频 -->
|
<!-- 音频 -->
|
||||||
<template v-if="item.type === 'audio'">
|
<template v-if="item.type === 'audio'">
|
||||||
<audio controls :ref="setRefs('audio')">
|
<audio controls :ref="setRefs('audio')">
|
||||||
<source :src="item.url" type="audio/mpeg" />
|
<source :src="item.url" type="audio/mpeg" :key="item.url" />
|
||||||
</audio>
|
</audio>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -220,25 +220,31 @@ const media = reactive({
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 媒体元素
|
// 媒体元素
|
||||||
const el = refs[props.item.type!];
|
let el: HTMLVideoElement | HTMLAudioElement | undefined;
|
||||||
|
|
||||||
// 监听播放\暂停
|
// 监听播放\暂停
|
||||||
watch(
|
watch(
|
||||||
() => props.item.isPlay,
|
() => props.item.isPlay,
|
||||||
(val) => {
|
(val) => {
|
||||||
if (val) {
|
if (!el) {
|
||||||
el.play();
|
el = refs[props.item.type!];
|
||||||
} else {
|
|
||||||
el.pause();
|
console.log(el);
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
// 监听播放完成
|
// 监听播放完成
|
||||||
el?.addEventListener("ended", () => {
|
el?.addEventListener("ended", () => {
|
||||||
media.pause();
|
media.pause();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (val) {
|
||||||
|
el?.play();
|
||||||
|
} else {
|
||||||
|
el?.pause();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user