From a327c651be34023498b848490cc6ea8eb4136001 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E9=91=AB?= Date: Thu, 31 Dec 2020 16:05:12 +0800 Subject: [PATCH] =?UTF-8?q?=E7=90=83=E6=9C=BA=E7=AE=A1=E7=90=86=E6=B5=8B?= =?UTF-8?q?=E8=AF=95rtsp=E6=B5=81=E8=A7=86=E9=A2=91=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E5=AE=8C=E5=96=84=EF=BC=88=E9=99=84=E6=96=B0=E5=A2=9E=E7=BC=96?= =?UTF-8?q?=E8=BE=91=E9=80=BB=E8=BE=91=E5=BE=AE=E8=B0=83=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/cameraManage/index.vue | 14 +- src/views/cameraManage/model.vue | 555 ++++++++++++++++++++++++++++--- 2 files changed, 519 insertions(+), 50 deletions(-) diff --git a/src/views/cameraManage/index.vue b/src/views/cameraManage/index.vue index 1716591..1699c14 100644 --- a/src/views/cameraManage/index.vue +++ b/src/views/cameraManage/index.vue @@ -16,7 +16,7 @@ @change="handleGetCameraList" > - + 测试 @@ -38,7 +38,7 @@ -
- - - - - - - - - - - - - -
+
+ + + +
@@ -140,4 +544,73 @@ export default { margin:6px 0; } } + .video-mask{ + position:fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + background-color:rgba(0,0,0,0.5); + z-index:1000; + display: flex; + align-items: center; + justify-content: center; + #video-test{ + + } + .video-close{ + position: absolute; + right: 20px; + top: 20px; + color: #ffffff; + font-size: 24px; + width: 32px; + height: 32px; + background: rgba(0,0,0,0.5); + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + cursor: pointer; + z-index: 10; + } + .operation-list{ + position: absolute; + right: 200px; + bottom: 20px; + /*width: 150px;*/ + /*border: solid 1px blue;*/ + z-index: 10; + .operation-item{ + img{ + width: 42px; + } + span{ + padding: 5px 10px; + background: rgba(0,0,0,0.5); + font-size: 18px; + color: #ffffff; + } + } + } + .direction-list{ + position: absolute; + right: 30px; + bottom: 20px; + width: 150px; + z-index: 10; + /*border: solid 1px blue;*/ + .direction-item{ + display: flex; + align-items: center; + justify-content: space-between; + img{ + width: 42px; + } + } + } + img{ + cursor: pointer; + } + }