From 0bae6752ace2746a51a018b548ba6d83db6f7742 Mon Sep 17 00:00:00 2001 From: odjbin <1042039504@qq.com> Date: Mon, 4 Mar 2024 15:47:47 +0800 Subject: [PATCH] =?UTF-8?q?fix=20:=20=E6=A0=B7=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/tunnel/index.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/tunnel/index.vue b/src/views/tunnel/index.vue index 615413a..fdd9460 100644 --- a/src/views/tunnel/index.vue +++ b/src/views/tunnel/index.vue @@ -106,7 +106,7 @@
- @@ -183,7 +183,7 @@ const isDetailVisited = ref(false); const showFan = ref(false); const drawerLeft = ref(true); const showTunnelTitle = ref(true); -// const loading = ref(false); +const loading = ref(false); const initialIndex = ref(0) const showFanLoading = ref(0) const showWindLoading = ref(0) @@ -326,14 +326,14 @@ const handleChangeState = (row) => { }); } const getAlarmList = () => { - // loading.value = true + loading.value = true getAlarmInfo({ tunnelId: tunnelId.value, lookupStatus: queryParams.lookupStatus, ...pageInfo }).then(res => { if (res.code === 1000) { - // loading.value = false + loading.value = false alarmList.value = res.data.rows total.value = res.data.total }