From 4271e03da068f8cfcaabc455e95bffc05673ef13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?LAPTOP-S9HJSOEB=5C=E6=98=8A=E5=A4=A9?= Date: Thu, 25 Jul 2024 16:16:12 +0800 Subject: [PATCH] =?UTF-8?q?=E7=90=83=E6=9C=BA=E5=9B=9E=E6=94=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/http/http-api.js | 5 + src/router/index.js | 9 + src/views/videoPlayback/index.vue | 410 ++++++++++++++++++++++++++++++ 3 files changed, 424 insertions(+) create mode 100644 src/views/videoPlayback/index.vue diff --git a/src/api/http/http-api.js b/src/api/http/http-api.js index d094c23..bdd5d84 100644 --- a/src/api/http/http-api.js +++ b/src/api/http/http-api.js @@ -25,6 +25,11 @@ export default { url: "/street/list", name: "获取全部巷道列表" }, + cameraRecord: { + method: "POST", + url: "/cameraRecord/record", + name: "球机回放信息" + }, addStreet: { method: "POST", url: "/street", diff --git a/src/router/index.js b/src/router/index.js index e9677a3..3d69287 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -104,6 +104,15 @@ const routes = [ }, + { + path: 'videoPlayback', + name: 'videoPlayback', + meta: { + icon: 'tag', + name: '记录回放', + }, + component: () => import('@/views/videoPlayback/index'), + }, { path: 'historyMonitoring', name: 'historyMonitoring', diff --git a/src/views/videoPlayback/index.vue b/src/views/videoPlayback/index.vue new file mode 100644 index 0000000..6659811 --- /dev/null +++ b/src/views/videoPlayback/index.vue @@ -0,0 +1,410 @@ + + + + +