This commit is contained in:
parent
a1cfbd1dc7
commit
df116895a3
|
@ -834,9 +834,9 @@ const getData = (identNo) => {
|
|||
}
|
||||
});
|
||||
});
|
||||
if (dataMyTag.camera) {
|
||||
getCameraUrl();
|
||||
}
|
||||
// if (dataMyTag.camera) {
|
||||
// getCameraUrl();
|
||||
// }
|
||||
}
|
||||
});
|
||||
};
|
||||
|
@ -854,27 +854,31 @@ const oneCardSolution = () => {
|
|||
};
|
||||
// 打开摄像头
|
||||
const openCamera = () => {
|
||||
if (errorMessage.value) {
|
||||
ElMessage.warning({
|
||||
message: errorMessage.value,
|
||||
});
|
||||
}else{
|
||||
camera.show = true;
|
||||
}
|
||||
// if (errorMessage.value) {
|
||||
// ElMessage.warning({
|
||||
// message: errorMessage.value,
|
||||
// });
|
||||
// }else{
|
||||
getCameraUrl();
|
||||
|
||||
// }
|
||||
};
|
||||
const errorMessage = ref("");
|
||||
//获取摄像头地址
|
||||
const getCameraUrl = () => {
|
||||
// camera.deviceCode = dataMyTag.camera.sbbm;
|
||||
camera.deviceCode = "3KSCP274757F2JU";
|
||||
camera.deviceCode = dataMyTag.camera.sbbm;
|
||||
// camera.deviceCode = "3KSCP274757F2JU";
|
||||
http
|
||||
.get(`/api/ggfwyth/ysyzt/getPlayAddress?deviceCode=${camera.deviceCode}`)
|
||||
.then((res) => {
|
||||
if (res.code == 200) {
|
||||
camera.show = true;
|
||||
camera.hlsUriSsl = res.data.hlsUriSsl;
|
||||
} else {
|
||||
errorMessage.value = res.message;
|
||||
// errorMessage.value = res.message;
|
||||
ElMessage.warning({
|
||||
message: res.message,
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue