From 16928e832ba2779e238653721633c5efbbd7daf3 Mon Sep 17 00:00:00 2001
From: ZhangXianQiang <1135831638@qq.com>
Date: 星期二, 19 三月 2024 13:47:22 +0800
Subject: [PATCH] feat:视频设备
---
src/views/screen/components/screen-video/index.vue | 149 +++++++++++++++++++++++++++++++++++++++++++++++++
src/views/screen/components/screen-wrapper/index.vue | 12 +++
src/views/screen/components/screen-examine/index.vue | 2
3 files changed, 160 insertions(+), 3 deletions(-)
diff --git a/src/views/screen/components/screen-examine/index.vue b/src/views/screen/components/screen-examine/index.vue
index 3e7ef83..9240013 100644
--- a/src/views/screen/components/screen-examine/index.vue
+++ b/src/views/screen/components/screen-examine/index.vue
@@ -3,8 +3,8 @@
<wrapper-title :title="'鑰冩牳鎴愮哗鏁版嵁'"></wrapper-title>
<div class="examine-content">
<div class="examine-wrapper">
- <examine-chart class="wrapper-item"></examine-chart>
<examine-table class="wrapper-item"></examine-table>
+ <examine-chart class="wrapper-item"></examine-chart>
</div>
</div>
</div>
diff --git a/src/views/screen/components/screen-video/index.vue b/src/views/screen/components/screen-video/index.vue
new file mode 100644
index 0000000..e6fd8dd
--- /dev/null
+++ b/src/views/screen/components/screen-video/index.vue
@@ -0,0 +1,149 @@
+<template>
+ <div class="video-container">
+ <wrapper-title :title="'瑙嗛璁惧'"></wrapper-title>
+ <div class="video-content">
+ <div class="video-plane">
+ <dv-border-box-13 class="panel">
+ <div class="panel-container">
+ <div class="top-container">
+ <div class="data-item">
+ <dv-decoration-9 style="width:120px;height:120px;">
+ <div class="data-num type1">1156</div>
+ </dv-decoration-9>
+ <div class="data-label">璁惧鎬绘暟</div>
+ </div>
+ <div class="data-item">
+ <dv-decoration-9 style="width:120px;height:120px;">
+ <div class="data-num type2">1000</div>
+ </dv-decoration-9>
+ <div class="data-label">姝e父鏁�</div>
+ </div>
+ </div>
+ <div class="bottom-container">
+ <div class="data-item">
+ <dv-decoration-9 style="width:120px;height:120px;">
+ <div class="data-num type3">156</div>
+ </dv-decoration-9>
+ <div class="data-label">寮傚父鏁�</div>
+ </div>
+ <div class="data-item">
+ <dv-decoration-9 style="width:120px;height:120px;">
+ <div class="data-num type4">75</div>
+ </dv-decoration-9>
+ <div class="data-label">鐢熸垚寮傚父宸ュ崟鏁�</div>
+ </div>
+ <div class="data-item">
+ <dv-decoration-9 style="width:120px;height:120px;">
+ <div class="data-num type5">91.36%</div>
+ </dv-decoration-9>
+ <div class="data-label">璁惧杩愯鐜�</div>
+ </div>
+ </div>
+
+
+ </div>
+
+ </dv-border-box-13>
+ </div>
+ </div>
+ </div>
+</template>
+
+<script>
+import WrapperTitle from '../wrapper-title/index';
+
+export default {
+ name: 'ScreenVideo',
+ components: {
+ WrapperTitle
+ }
+}
+</script>
+
+<style lang="scss" scoped>
+.video-container {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ margin-bottom: 20px;
+}
+
+.video-content {
+ flex: 1;
+ background: rgba(67, 102, 155, 0.3);
+ border: 1px solid rgba(47, 91, 157, 0.8);
+}
+
+.panel {
+ width: 100%;
+ height: 100%;
+}
+
+.video-plane {
+ width: 100%;
+
+ .panel-container {
+ width: 100%;
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ align-items: center;
+ box-sizing: border;
+ padding: 20px;
+
+ .top-container,
+ .bottom-container {
+ width: 100%;
+ display: flex;
+
+ }
+
+ .top-container {
+ justify-content: center;
+
+ .data-item {
+ margin: 0 30px;
+ }
+ }
+
+ .bottom-container {
+ justify-content: space-around;
+ }
+
+ .data-item {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ font-size: 20px;
+ color: #fff;
+ .data-num {
+ font-weight: bold;
+ font-size: 22px;
+ }
+ }
+
+ .type1 {
+ color: #0883d4;
+ }
+
+ .type2 {
+ color: #08b108;
+ }
+
+ .type3 {
+ color: #ff0000;
+ }
+
+ .type4 {
+ color: #d82a64;
+ }
+
+ .type5 {
+ color: #08b108;
+ }
+
+ }
+
+}
+</style>
\ No newline at end of file
diff --git a/src/views/screen/components/screen-wrapper/index.vue b/src/views/screen/components/screen-wrapper/index.vue
index 0dbff49..14b259f 100644
--- a/src/views/screen/components/screen-wrapper/index.vue
+++ b/src/views/screen/components/screen-wrapper/index.vue
@@ -1,11 +1,14 @@
<template>
<div class="wrapper-container">
+
<div class="wrapper-content">
<div class="left-container wrapper">
<screen-face></screen-face>
</div>
<div class="center-container wrapper">
<screen-detection></screen-detection>
+ <screen-video></screen-video>
+
</div>
<div class="right-container wrapper">
<screen-examine></screen-examine>
@@ -18,12 +21,14 @@
import ScreenFace from '../screen-face/index';
import ScreenDetection from '../screen-detection/index';
import ScreenExamine from '../screen-examine/index';
+import ScreenVideo from '../screen-video/index';
export default {
name: 'ScreenWrapper',
components: {
ScreenFace,
ScreenDetection,
ScreenExamine,
+ ScreenVideo
},
}
</script>
@@ -36,16 +41,17 @@
top: 0;
left: 0;
z-index: 1;
+
.wrapper-content {
width: 100%;
height: calc(100% - 100px);
margin-top: 100px;
- border: 1px solid red;
position: relative;
box-sizing: border-box;
padding: 20px;
display: flex;
align-items: center;
+ justify-content: space-between;
}
}
@@ -54,15 +60,17 @@
height: 100%;
box-sizing: border-box;
padding: 0 10px;
- border: 1px solid red;
display: flex;
flex-direction: column;
justify-content: space-between;
+
&:first-of-type {
padding-left: 0;
}
+
&:last-of-type {
padding-right: 0;
}
}
+
</style>
\ No newline at end of file
--
Gitblit v1.8.0