From 94e2f78c6ff8eb51ce9b0a8c7a85062872cacb0c Mon Sep 17 00:00:00 2001
From: value <z1292839451@163.com>
Date: 星期一, 22 四月 2024 17:25:48 +0800
Subject: [PATCH] 检验模板调整

---
 src/components/view/a6-device-overview.vue |   14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/src/components/view/a6-device-overview.vue b/src/components/view/a6-device-overview.vue
index d330033..eb4bfab 100644
--- a/src/components/view/a6-device-overview.vue
+++ b/src/components/view/a6-device-overview.vue
@@ -39,12 +39,13 @@
   .card {
     list-style-type: none;
     display: grid;
-    grid-template-columns: repeat(auto-fit, 375px);
+    grid-template-columns: repeat(auto-fit, 415px);
     /* justify-content: center; */
     grid-gap: 16px;
+    min-height: 300px;
   }
   .card li{
-    width: 375px;
+    width: 415px;
     height: 165px;
     border-radius: 8px 8px 8px 8px;
     border: 1px solid #EEEEEE;
@@ -260,15 +261,15 @@
             this.total = res.data.body.total
             let list = res.data.body.records.map(m=>{
               switch (m.deviceStatus){
-                case '0':
+                case 0:
                   // 姝e父
                   m.type ='success'
                   break;
-                case '1':
+                case 1:
                   // 鎶ュ簾
                   m.type ='warning'
                   break;
-                case '2':
+                case 2:
                   // 淇濅慨
                   m.type ='danger'
                   break;
@@ -287,6 +288,9 @@
                 this.finishLoding = true;
               }
               this.list = this.list.concat(list)
+              if(this.total==this.list.length){
+                this.finishLoding = true;
+              }
             }
           }
           this.loading = false

--
Gitblit v1.9.3