This commit is contained in:
duanxiaohai 2024-08-25 15:20:29 +08:00
parent 909c2a1e99
commit bf5b692662
2 changed files with 5 additions and 0 deletions

View File

@ -54,6 +54,7 @@
controls
playsinline
autoplay="autoplay"
style="width: 100%; height: auto;"
>
<source :src="attachmentLink" type="application/x-mpegURL" />
</video>

View File

@ -861,6 +861,10 @@ const getCameraUrl = () => {
.then((res) => {
if (res.code == 200) {
camera.hlsUriSsl = res.data.hlsUriSsl;
} else {
ElMessage.warning({
message: res.message,
});
}
});
};