integrated_traffic_vue/src/components/video/index.vue

57 lines
1.2 KiB
Vue
Raw Normal View History

2024-01-08 14:31:18 +08:00
<template>
<el-dialog title="视频" v-model="visible">
2024-01-10 10:04:26 +08:00
<ali-player
:source="fnSrc(src)"
:vid="vid"
:play-auth="playAuth"
ref="playerRef"
/>
2024-01-08 14:31:18 +08:00
</el-dialog>
</template>
<script setup>
import { useVModel } from "@vueuse/core";
import AliPlayer from "@/components/ali-player/index.vue";
import { ref, watchEffect } from "vue";
const VITE_FILE_URL = import.meta.env.VITE_FILE_URL;
defineOptions({
name: "LayoutVideo",
});
const props = defineProps({
src: {
type: String,
2024-01-10 10:04:26 +08:00
default: "",
},
vid: {
type: String,
default: "",
},
playAuth: {
type: String,
default: "",
2024-01-08 14:31:18 +08:00
},
visible: {
type: Boolean,
required: true,
2024-01-10 10:04:26 +08:00
default: false,
2024-01-08 14:31:18 +08:00
},
});
const emits = defineEmits(["update:visible"]);
const visible = useVModel(props, "visible", emits);
const playerRef = ref(null);
const fnSrc = (src) => {
if (src.indexOf("http") !== -1 || src.indexOf("https") !== -1) return src;
else return VITE_FILE_URL + src;
};
watchEffect(() => {
if (visible.value) {
playerRef.value && playerRef.value.play();
} else {
playerRef.value && playerRef.value.pause();
}
});
</script>
<style scoped lang="scss"></style>