From 10268ab2ba7e7e18c07d5f30c1370d302d6d3abd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E6=B4=81?= <209192278@qq.com> Date: Sat, 9 Dec 2023 18:22:10 +0800 Subject: [PATCH] =?UTF-8?q?=E9=82=93=E6=B4=81=20:=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E7=BB=86=E8=8A=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/tunnel/index.vue | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/views/tunnel/index.vue b/src/views/tunnel/index.vue index b3883fe..da86fe0 100644 --- a/src/views/tunnel/index.vue +++ b/src/views/tunnel/index.vue @@ -26,7 +26,7 @@ :close-on-click-modal="false" :close-on-press-escape="false" > - + @@ -43,9 +43,9 @@ :close-on-click-modal="false" :close-on-press-escape="false" > - - - + + +
@@ -75,10 +75,12 @@ import BadGasInfo from "@/components/content/badGasInfo/BadGasInfo.vue"; import ManageBtn from "@/components/manageBtn/index.vue"; import {dateFormat} from "@/utils/date.js"; import {useAuthStore} from '@/store/userstore.js' +import {onMounted} from "vue"; const authStore = useAuthStore() const router = useRouter() const selectIndex = ref(1) +const showFan = ref(false) const drawerLeft = ref(true) const drawerRight = ref(true) const currentSite = ref('松江站') @@ -109,6 +111,11 @@ const tunnelList = ref([ name: '七号隧道' }, ]) +onMounted(()=>{ + nextTick(()=>{ + showFan.value=true + }) +}) const manageSelect = () => { // getInfo(); };