2021-06-07 17:22:07 +08:00
|
|
|
<template>
|
|
|
|
|
<el-main class="layout-main">
|
|
|
|
|
<el-scrollbar
|
|
|
|
|
class="layout-scrollbar"
|
|
|
|
|
ref="layoutScrollbarRef"
|
|
|
|
|
v-show="!currentRouteMeta.link && !currentRouteMeta.isIframe"
|
|
|
|
|
:style="{ minHeight: `calc(100vh - ${headerHeight}` }"
|
|
|
|
|
>
|
|
|
|
|
<LayoutParentView />
|
|
|
|
|
<Footer v-if="getThemeConfig.isFooter" />
|
|
|
|
|
</el-scrollbar>
|
|
|
|
|
<Link
|
|
|
|
|
:style="{ height: `calc(100vh - ${headerHeight}` }"
|
|
|
|
|
:meta="currentRouteMeta"
|
|
|
|
|
v-if="currentRouteMeta.link && !currentRouteMeta.isIframe"
|
|
|
|
|
/>
|
|
|
|
|
<Iframes
|
|
|
|
|
:style="{ height: `calc(100vh - ${headerHeight}` }"
|
|
|
|
|
:meta="currentRouteMeta"
|
|
|
|
|
v-if="currentRouteMeta.link && currentRouteMeta.isIframe && isShowLink"
|
|
|
|
|
@getCurrentRouteMeta="onGetCurrentRouteMeta"
|
|
|
|
|
/>
|
|
|
|
|
</el-main>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
|
import { computed, defineComponent, toRefs, reactive, getCurrentInstance, watch, onBeforeMount } from 'vue';
|
|
|
|
|
import { useRoute } from 'vue-router';
|
|
|
|
|
import { useStore } from '@/store/index.ts';
|
|
|
|
|
import LayoutParentView from '@/views/layout/routerView/parent.vue';
|
|
|
|
|
import Footer from '@/views/layout/footer/index.vue';
|
|
|
|
|
import Link from '@/views/layout/routerView/link.vue';
|
|
|
|
|
import Iframes from '@/views/layout/routerView/iframes.vue';
|
|
|
|
|
export default defineComponent({
|
|
|
|
|
name: 'layoutMain',
|
|
|
|
|
components: { LayoutParentView, Footer, Link, Iframes },
|
|
|
|
|
setup() {
|
|
|
|
|
const { proxy } = getCurrentInstance() as any;
|
|
|
|
|
const store = useStore();
|
|
|
|
|
const route = useRoute();
|
|
|
|
|
const state = reactive({
|
|
|
|
|
headerHeight: '',
|
|
|
|
|
currentRouteMeta: {},
|
|
|
|
|
isShowLink: false,
|
|
|
|
|
});
|
|
|
|
|
// 获取布局配置信息
|
|
|
|
|
const getThemeConfig = computed(() => {
|
|
|
|
|
return store.state.themeConfig.themeConfig;
|
|
|
|
|
});
|
|
|
|
|
// 子组件触发更新
|
|
|
|
|
const onGetCurrentRouteMeta = () => {
|
|
|
|
|
initCurrentRouteMeta(route.meta);
|
|
|
|
|
};
|
|
|
|
|
// 初始化当前路由 meta 信息
|
|
|
|
|
const initCurrentRouteMeta = (meta: object) => {
|
|
|
|
|
state.isShowLink = false;
|
|
|
|
|
state.currentRouteMeta = meta;
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
state.isShowLink = true;
|
|
|
|
|
}, 100);
|
|
|
|
|
};
|
|
|
|
|
// 设置 main 的高度
|
|
|
|
|
const initHeaderHeight = () => {
|
|
|
|
|
let { isTagsview } = store.state.themeConfig.themeConfig;
|
|
|
|
|
if (isTagsview) return (state.headerHeight = `84px`);
|
|
|
|
|
else return (state.headerHeight = `50px`);
|
|
|
|
|
};
|
|
|
|
|
// 页面加载前
|
|
|
|
|
onBeforeMount(() => {
|
|
|
|
|
initCurrentRouteMeta(route.meta);
|
|
|
|
|
initHeaderHeight();
|
|
|
|
|
});
|
|
|
|
|
// 监听 themeConfig 配置文件的变化,更新菜单 el-scrollbar 的高度
|
|
|
|
|
watch(store.state.themeConfig.themeConfig, (val) => {
|
|
|
|
|
state.headerHeight = val.isTagsview ? '84px' : '50px';
|
|
|
|
|
if (val.isFixedHeaderChange !== val.isFixedHeader) {
|
|
|
|
|
if (!proxy.$refs.layoutScrollbarRef) return false;
|
|
|
|
|
proxy.$refs.layoutScrollbarRef.update();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
// 监听路由的变化
|
|
|
|
|
watch(
|
|
|
|
|
() => route.path,
|
|
|
|
|
() => {
|
|
|
|
|
initCurrentRouteMeta(route.meta);
|
2022-01-12 16:00:31 +08:00
|
|
|
proxy.$refs.layoutScrollbarRef.wrap$.scrollTop = 0;
|
2021-06-07 17:22:07 +08:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
return {
|
|
|
|
|
getThemeConfig,
|
|
|
|
|
initCurrentRouteMeta,
|
|
|
|
|
onGetCurrentRouteMeta,
|
|
|
|
|
...toRefs(state),
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
</script>
|