You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

42 lines
1.2 KiB

<template>
<div :class="[prefixCls, getLayoutContentMode]" v-loading="getOpenPageLoading && getPageLoading">
<PageLayout />
</div>
</template>
<script lang="ts" setup>
import PageLayout from '@/layouts/page/index.vue'
import { useDesign } from '@/hooks/web/useDesign'
import { useRootSetting } from '@/hooks/setting/useRootSetting'
import { useTransitionSetting } from '@/hooks/setting/useTransitionSetting'
import { useContentViewHeight } from './useContentViewHeight'
defineOptions({ name: 'LayoutContent' })
const { prefixCls } = useDesign('layout-content')
const { getOpenPageLoading } = useTransitionSetting()
const { getLayoutContentMode, getPageLoading } = useRootSetting()
useContentViewHeight()
</script>
<style lang="less">
@prefix-cls: ~'@{namespace}-layout-content';
.@{prefix-cls} {
position: relative;
flex: 1 1 auto;
min-height: 0;
// begin: 下面这块代码 在我的项目打包后在比较宽的屏幕(2K 31 )有显示 bug 有偶发性 清缓存首次进入会出现 , 刷新就没了, 这里为什么要指定宽度 ?
&.fixed {
width: 1200px;
margin: 0 auto;
}
// end
&-loading {
position: absolute;
top: 200px;
z-index: @page-loading-z-index;
}
}
</style>