From b8440d9a6b1671cdf0c8f06cdaba2f80a8dac1e6 Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Wed, 13 Nov 2024 14:17:15 +0800
Subject: [PATCH] 退出图标按钮修复

---
 src/views/supplies/components/leftContainer.vue |   44 +++++++++++++-------------------------------
 1 files changed, 13 insertions(+), 31 deletions(-)

diff --git a/src/views/supplies/components/leftContainer.vue b/src/views/supplies/components/leftContainer.vue
index 0781c33..7542968 100644
--- a/src/views/supplies/components/leftContainer.vue
+++ b/src/views/supplies/components/leftContainer.vue
@@ -2,47 +2,29 @@
  * @Author: shuishen 1109946754@qq.com
  * @Date: 2023-03-10 15:27:59
  * @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2024-10-25 18:43:23
- * @FilePath: \bigScreen\src\views\statistics\components\leftContainer.vue
+ * @LastEditTime: 2024-11-08 15:48:16
+ * @FilePath: \bigScreen\src\views\supplies\components\leftContainer.vue
  * @Description: 
  * 
  * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. 
 -->
 <script setup>
-import dataContent from './box/dataContent.vue'
-import unitContent from './box/unitContent.vue'
-import fireContent from './box/fireContent.vue'
+import dataContent from "./box/dataContent.vue"
+import unitContent from "./box/unitContent.vue"
+import fireContent from "./box/fireContent.vue"
 </script>
 
 <template>
   <div class="left-container">
-    <div class="data box">
-      <title-box>
-        <template #titleName>
-          数据概览
-        </template>
-      </title-box>
-      <data-content></data-content>
-    </div>
-
-    <div class="unit box">
-      <title-box>
-        <template #titleName>
-          入住单位统计
-        </template>
-      </title-box>
-      <unit-content></unit-content>
-    </div>
-
-    <div class="fire box">
-      <title-box>
-        <template #titleName>
-          实时火警事件
-        </template>
-      </title-box>
-      <fire-content></fire-content>
+    <div class="data box w100 h100">
+      <data-content>
+      </data-content>
     </div>
   </div>
 </template>
 
-<style lang="scss" scoped></style>
\ No newline at end of file
+<style lang="scss" scoped>
+.left-container {
+  width: 100%;
+}
+</style>

--
Gitblit v1.9.3