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; + } + }