From 7aa1905e6d124f009de17dfdf8bc174122bb6694 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 23 Apr 2021 11:53:00 +0800
Subject: [PATCH] 追踪页面布局稍微调整

---
 src/views/supervisoryConsole/card.vue |   10 +++-------
 1 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/src/views/supervisoryConsole/card.vue b/src/views/supervisoryConsole/card.vue
index 39388a6..7c9f4bb 100644
--- a/src/views/supervisoryConsole/card.vue
+++ b/src/views/supervisoryConsole/card.vue
@@ -52,7 +52,7 @@
             "
           >
             <div>{{ item.deviceName }}</div>
-            <div style="width: 80%;">{{ item.street }}</div>
+            <div style="width: 80%">{{ item.street }}</div>
 
             <div class="cet">
               {{
@@ -129,7 +129,7 @@
         this.loading = false;
       }, 2000);
     },
-    
+
     inputSearchBtn() {
       this.getEquipmentLists();
     },
@@ -161,11 +161,7 @@
           });
         } else if (this.radio == "仅显示设备掉线") {
           res.data.data.forEach((item) => {
-            if (item.jtype == 1 && item.onlineStatus != 1) {
-              f.push(item);
-            } else {
-              if (item.onlineStatus != 1) b.push(item);
-            }
+            if (item.onlineStatus != 1) b.push(item);
           });
         } else if (this.radio == "仅显示设备故障") {
           res.data.data.forEach((item) => {

--
Gitblit v1.9.3