From 8f38a93c9c9ddaf547200a542aecced93f8857a3 Mon Sep 17 00:00:00 2001
From: zhaowei <zhaowei>
Date: 星期一, 11 十一月 2024 15:11:50 +0800
Subject: [PATCH] 报警分析页面子表格持续时间增加默认升序排序功能

---
 src/views/dashboard/Analysis.vue |   26 +++++++++++++++++---------
 1 files changed, 17 insertions(+), 9 deletions(-)

diff --git a/src/views/dashboard/Analysis.vue b/src/views/dashboard/Analysis.vue
index 1b9ab1c..e87c134 100644
--- a/src/views/dashboard/Analysis.vue
+++ b/src/views/dashboard/Analysis.vue
@@ -1,6 +1,6 @@
 <template>
-  <div>
-
+  <div class="container">
+    <img src="@/assets/dashboard.jpg">
   </div>
 </template>
 
@@ -8,20 +8,28 @@
 
 
   export default {
-    name: "Analysis",
-    components: {
-
-    },
+    name: 'Analysis',
+    components: {},
     data() {
       return {
-        indexStyle:1
+        indexStyle: 1
       }
     },
     created() {
 
     },
-    methods: {
+    methods: {}
+  }
+</script>
 
+<style scoped lang="less">
+  .container {
+    flex: 1;
+    display: flex;
+    flex-direction: column;
+    img {
+      width: 100%;
+      flex: 1;
     }
   }
-</script>
\ No newline at end of file
+</style>
\ No newline at end of file

--
Gitblit v1.9.3