mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 11:18:54 +08:00
fix: 修复plugin-layout中body的top计算问题
This commit is contained in:
parent
fbcde25789
commit
afdbaa81cc
@ -165,8 +165,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { ref, computed, onMounted } from 'vue';
|
||||
import { useRoute } from '@@/core/coreExports';
|
||||
import { ref, computed, watch, nextTick } from 'vue';
|
||||
import { useRoute, useRouter } from '@@/core/coreExports';
|
||||
import { FLayout, FAside, FMain, FFooter, FHeader } from '@fesjs/fes-design';
|
||||
import defaultLogo from '../assets/logo.png';
|
||||
import Menu from './Menu.vue';
|
||||
@ -235,6 +235,7 @@ export default {
|
||||
const headerHeightRef = ref(0);
|
||||
const collapsedRef = ref(false);
|
||||
const route = useRoute();
|
||||
const router = useRouter();
|
||||
|
||||
const currentNavigation = computed(() => {
|
||||
if (route.meta.layout && route.meta.layout.navigation !== undefined) {
|
||||
@ -250,11 +251,20 @@ export default {
|
||||
return props.isFixedSidebar ? { left } : null;
|
||||
});
|
||||
|
||||
onMounted(() => {
|
||||
if (headerRef.value) {
|
||||
headerHeightRef.value = headerRef.value.$el.offsetHeight;
|
||||
}
|
||||
});
|
||||
watch(
|
||||
router.currentRoute,
|
||||
() => {
|
||||
nextTick(() => {
|
||||
if (headerRef.value) {
|
||||
headerHeightRef.value = headerRef.value.$el.offsetHeight;
|
||||
}
|
||||
});
|
||||
},
|
||||
{
|
||||
immediate: true,
|
||||
},
|
||||
);
|
||||
|
||||
return {
|
||||
headerRef,
|
||||
headerHeightRef,
|
||||
|
@ -35,7 +35,7 @@ export default defineBuildConfig({
|
||||
title: 'Fes.js',
|
||||
footer: 'Created by MumbleFE',
|
||||
multiTabs: true,
|
||||
navigation: 'side',
|
||||
navigation: 'mixin',
|
||||
theme: 'dark',
|
||||
menus: [
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user