diff --git a/front/src/views/home/infrastructurePage.vue b/front/src/views/home/infrastructurePage.vue
index 7c45e006..9a7bc57f 100644
--- a/front/src/views/home/infrastructurePage.vue
+++ b/front/src/views/home/infrastructurePage.vue
@@ -312,7 +312,7 @@
{{ statusText[record.status] || '' }}
- {
rowClickData.value = item
// 单个预览
if (item && item.status != 1) {
- return message.warning('当前设备离线, 不可预览!')
+ return
+ // return message.warning('当前设备离线, 不可预览!')
}
console.log('打开视频', id)
const param = {
@@ -2367,4 +2368,13 @@ video::-webkit-media-controls {
bottom: 30px;
text-align: right;
}
+
+.disabled-text {
+ cursor: not-allowed;
+ opacity: 0.5;
+ color: #666666;
+ &:hover {
+ color: #666666;
+ }
+}