2026-04-20 11:21:21 +08:00
|
|
|
<template>
|
|
|
|
|
<main-header />
|
|
|
|
|
<div class="view"><RouteCache /></div>
|
2026-04-21 15:57:59 +08:00
|
|
|
<login-dialog />
|
2026-04-20 11:21:21 +08:00
|
|
|
<div id="loading" v-if="loading" v-loading="true"></div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2026-04-21 15:57:59 +08:00
|
|
|
import { computed } from 'vue'
|
2026-04-20 11:21:21 +08:00
|
|
|
import RouteCache from '@/components/RouteCache.vue'
|
|
|
|
|
import MainHeader from '@/views/main-header.vue'
|
2026-04-21 15:57:59 +08:00
|
|
|
import LoginDialog from '@/views/login/login-dialog.vue'
|
2026-04-20 11:21:21 +08:00
|
|
|
import { useGlobalStore } from '@/stores'
|
|
|
|
|
const globalStore = useGlobalStore()
|
|
|
|
|
const loading = computed(() => globalStore.state.loading)
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less">
|
|
|
|
|
#app {
|
|
|
|
|
font-size: 1.6rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
#loading {
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: 999999999;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
// background-color: rgba(0, 0, 0, 0.3);
|
|
|
|
|
// display: flex;
|
|
|
|
|
// align-items: center;
|
|
|
|
|
// justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<style lang="less" scoped>
|
2026-04-21 15:57:37 +08:00
|
|
|
* {
|
|
|
|
|
--header-height: 8rem;
|
|
|
|
|
--footer-height: 7rem;
|
|
|
|
|
}
|
2026-04-20 11:21:21 +08:00
|
|
|
.view {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
</style>
|