Compare commits

..

No commits in common. "03f98c8beb1d2f2afbcb693e9e400282971a607b" and "9b5a2ec88d7d2ab047e890e0fc4f561d7780c519" have entirely different histories.

1 changed files with 11 additions and 11 deletions

View File

@ -4,14 +4,14 @@
<Header />
</el-header>
<el-main>
<!-- <template v-if="currentRoute.path != '/home'">
<template v-if="currentRoute.path != '/home'">
<el-page-header @back="goBack">
<template #content>
<span class="text-large mr-3"> {{ currentRoute.meta.title }} </span>
</template>
</el-page-header>
</template> -->
<AppMain />
</template>
<AppMain :style="{ height: currentRoute.path == '/home' ? '100%' : 'calc(100% - 45px)'}" />
</el-main>
<Uploader v-if="uploaderStore.uploadList && uploaderStore.uploadList.length > 0" />
<AiChart/>
@ -29,15 +29,15 @@ import uploaderState from '@/store/modules/uploader'
import { ref } from 'vue'
const router = useRouter()
// const currentRoute = ref('')
const currentRoute = ref('')
// watch(
// () => router.currentRoute.value,
// (newValue) => {
// currentRoute.value = newValue
// },
// { immediate: true }
// )
watch(
() => router.currentRoute.value,
(newValue) => {
currentRoute.value = newValue
},
{ immediate: true }
)
let uploaderStore = ref(uploaderState())