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
}