This commit is contained in:
2025-10-01 21:23:09 +08:00
parent 5e54e4ae62
commit a917bbc936

View File

@@ -69,7 +69,7 @@ const getDetails = async (deviceId) => {
const res = await getDevice(deviceId);
tableData.value = res.data;
// 使用当前访问的域名和端口通过Nginx代理访问视频流
playUrl.value = `${window.location.origin}/live?url=${tableData.value.url}`;
playUrl.value = `http://49.232.154.205:10083/live?url=${tableData.value.url}`;
handlePlay();
}