From a1d711017ad59c0d26e13211449d4a25c5ad2e37 Mon Sep 17 00:00:00 2001 From: fyy <2717885210@qq.com> Date: Sun, 27 Jul 2025 18:10:44 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=A7=86=E9=A2=91=E7=9B=91=E6=8E=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../videoSurveillance/channel-tree.vue | 106 +++++ .../videoSystem/videoSurveillance/data.ts | 4 + .../videoSystem/videoSurveillance/index.vue | 382 +++++++++++++++++- 3 files changed, 487 insertions(+), 5 deletions(-) create mode 100644 apps/web-antd/src/views/videoSystem/videoSurveillance/channel-tree.vue create mode 100644 apps/web-antd/src/views/videoSystem/videoSurveillance/data.ts diff --git a/apps/web-antd/src/views/videoSystem/videoSurveillance/channel-tree.vue b/apps/web-antd/src/views/videoSystem/videoSurveillance/channel-tree.vue new file mode 100644 index 00000000..2f06b7da --- /dev/null +++ b/apps/web-antd/src/views/videoSystem/videoSurveillance/channel-tree.vue @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + {{ label.substring(0, label.indexOf(searchValue)) }} + {{ searchValue }} + {{ + label.substring( + label.indexOf(searchValue) + searchValue.length, + ) + }} + + {{ label }} + + + + + + + diff --git a/apps/web-antd/src/views/videoSystem/videoSurveillance/data.ts b/apps/web-antd/src/views/videoSystem/videoSurveillance/data.ts new file mode 100644 index 00000000..15201e48 --- /dev/null +++ b/apps/web-antd/src/views/videoSystem/videoSurveillance/data.ts @@ -0,0 +1,4 @@ +export interface CacheNode { + player: any; // 播放器控制对象 + data: any; // 播放节点参数 +} diff --git a/apps/web-antd/src/views/videoSystem/videoSurveillance/index.vue b/apps/web-antd/src/views/videoSystem/videoSurveillance/index.vue index 91149712..79401ff4 100644 --- a/apps/web-antd/src/views/videoSystem/videoSurveillance/index.vue +++ b/apps/web-antd/src/views/videoSystem/videoSurveillance/index.vue @@ -1,9 +1,381 @@ - - 视频监控 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +