From dc5472e5bda5f4c9b779977c691e8973e2a1a12c Mon Sep 17 00:00:00 2001
From: haoxuan <haoxuan>
Date: 星期四, 07 九月 2023 10:49:45 +0800
Subject: [PATCH] 去掉网络设置的 tab 2-23-9-7

---
 src/views/visualization.vue |   39 +++++++++++++++++++++++++--------------
 1 files changed, 25 insertions(+), 14 deletions(-)

diff --git a/src/views/visualization.vue b/src/views/visualization.vue
index 4971efa..9a27125 100644
--- a/src/views/visualization.vue
+++ b/src/views/visualization.vue
@@ -227,7 +227,7 @@
                     </div> -->
                     <div class="card_top-4">
                       <div>宸ヨ壓缂栧彿锛歿{ list.number }}</div>
-                      <div
+                      <!-- <div
                         style="
                           font-size: 14px;
                           color: #cfcfcf;
@@ -235,7 +235,7 @@
                         "
                       >
                         宸ヨ壓鐨勫叿浣撲俊鎭鐐瑰嚮鎺у埗鏌ョ湅锛�
-                      </div>
+                      </div> -->
                     </div>
                   </template>
                 </div>
@@ -531,6 +531,9 @@
       countDownHour:0,
       countDownMinute:0,
       Arr:[],
+        // 璁板綍瀹氭椂鍣ㄧ姸鎬�
+        procInfoTimer:null,
+       cutdownTimer: null
     };
   },
   mounted() {
@@ -658,6 +661,7 @@
       };
       getTaskInfo().then((res) => {
         if (res.code == 200) {
+          this.procedureList=[]
           this.taskData = res.data
             ? res.data
             : {
@@ -694,9 +698,11 @@
               }
             });
             this.getProgressInfo();
-            setInterval(() => {
-              this.getProgressInfo();
-            }, 6000);
+            if (!this.procInfoTimer) {
+                this.procInfoTimer = setInterval(() => {
+                  this.getProgressInfo();
+                }, 6000);
+            }
           }
           console.log(this.procedureList, "===1111procedureList");
           // setTimeout(() => {
@@ -707,9 +713,12 @@
         }
         if(res.code!=200||!this.taskData.Procedure.ID){
           this.getcountdown();
-            setInterval(() => {
-              this.getcountdown();
-            }, 60000);
+          // 鎺у埗閲嶆柊璇锋眰getTaskInfo, 鍙紑鍚竴涓畾鏃跺櫒
+         if (!this.cutdownTimer) {
+          this.cutdownTimer = setInterval(() => {
+                 this.getcountdown();
+              }, 60000);
+          } 
         }
       });
     },
@@ -729,6 +738,7 @@
         this.$refs.control.islook = true;
       } else {
         this.$message.error("褰撳墠璁惧娌℃湁宸ュ簭锛�");
+       
       }
     },
     // 鍙充晶瀹屾垚
@@ -831,11 +841,7 @@
   font-size: 30px;
   font-weight: 700;
 }
-.el-button--primary {
-  border: 0;
-  font-weight: 700 !important;
-  font-size: 16px !important;
-}
+
 .color_4efefa {
   color: #4efefa;
 }
@@ -1146,7 +1152,7 @@
           padding: 0 10px;
           height: 70px;
 
-          line-height: 40px;
+          line-height: 70px;
           color: #fff;
           background: rgb(19, 35, 90);
           font-size: 20px;
@@ -1348,4 +1354,9 @@
     }
   }
 }
+.el-button--primary {
+  border: 0;
+  font-weight: 700 !important;
+  font-size: 16px;
+}
 </style>

--
Gitblit v1.8.0