From e2a72a5e883d79d46d65062897c367b782cf8ba4 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期四, 19 九月 2024 18:57:32 +0800
Subject: [PATCH] 新增视频监控导出按钮

---
 src/views/screen/index.vue |   24 +++++++++++++++---------
 1 files changed, 15 insertions(+), 9 deletions(-)

diff --git a/src/views/screen/index.vue b/src/views/screen/index.vue
index 0f5f718..987a159 100644
--- a/src/views/screen/index.vue
+++ b/src/views/screen/index.vue
@@ -114,9 +114,9 @@
           <div class="normal-statistics-content">
             <ul class="list-title-container">
               <li>鍦板尯</li>
-              <li>瑙嗛璁惧</li>
-              <li>杞﹁締璁惧</li>
-              <li>浜鸿劯璁惧</li>
+              <li>瑙嗛</li>
+              <li>杞﹁締</li>
+              <li>浜鸿劯</li>
             </ul>
             <div class="list-content">
               <div class="list-content-to is-scroll-bar">
@@ -396,14 +396,14 @@
       item1.value1 = this.workOrderData.doneNum
       item1.value2 = this.workOrderData.totalNum - this.workOrderData.doneNum
       item1.color = '#5cff9a'
-      item1.title = '宸插鐞嗗伐鍗曟暟'
+      item1.title = '宸插鐞�'
       this.statistics.push(item1)
 
       let item2 = {value1: 0, value2: 0, title: "", color: ""}
       item2.value1 = this.workOrderData.todoNum
       item2.value2 = this.workOrderData.totalNum - this.workOrderData.todoNum
       item2.color = '#ff7b72'
-      item2.title = '鏈鐞嗗伐鍗曟暟'
+      item2.title = '鏈鐞�'
       this.statistics.push(item2)
       console.log( this.statistics)
     },
@@ -916,6 +916,8 @@
             background-repeat: no-repeat;
             display: flex;
             flex-direction: column;
+            justify-content: center;
+            align-items: center;
 
             .item-facility-icon {
               margin: 0 auto;
@@ -935,6 +937,7 @@
               text-align: center;
               font-size: 14px;
               list-style-type: none;
+              padding-left: 0;
 
               li:nth-child(1) {
                 .value {
@@ -976,6 +979,7 @@
         display: flex;
         flex-direction: column;
         height: 0;
+        overflow: hidden;
 
         .title {
           width: 100%;
@@ -989,7 +993,7 @@
           position: relative;
           border-bottom: 1px solid #3e97e4;
           border-right: 1px solid #3e97e4;
-          padding: 4% 4% 4% 0;
+          padding: 0 4% 4% 0;
           box-sizing: border-box;
           height: 0;
 
@@ -1017,6 +1021,7 @@
           .list-title-container {
             width: 100%;
             height: 45px;
+            margin: 4px 0 0 0;
             line-height: 45px;
             list-style-type: none;
             display: flex;
@@ -1092,6 +1097,7 @@
               height: 100%;
               overflow-y: auto;
               overflow-x: hidden;
+              padding: 10px 0;
             }
 
             .item-list {
@@ -1100,7 +1106,7 @@
               align-items: center;
               list-style-type: none;
               border-bottom: 1px dashed #223654;
-
+              margin: 10px 0;
               li {
                 width: 25%;
                 text-align: center;
@@ -1111,8 +1117,8 @@
                 white-space: nowrap;
                 overflow: hidden;
                 text-overflow: ellipsis;
-                height: 44px;
-                line-height: 44px;
+                height: 28px;
+                line-height: 28px;
               }
 
               .name {

--
Gitblit v1.8.0