79 lines
1.9 KiB
Vue
79 lines
1.9 KiB
Vue
<script lang="tsx">
|
|
import { computed, defineComponent, unref } from 'vue'
|
|
import { useAppStore } from '@/store/modules/app'
|
|
import { Backtop } from '@/components/Backtop'
|
|
import { Setting } from '@/layout/components/Setting'
|
|
import { useRenderLayout } from './components/useRenderLayout'
|
|
import { useDesign } from '@/hooks/web/useDesign'
|
|
|
|
const { getPrefixCls } = useDesign()
|
|
|
|
const prefixCls = getPrefixCls('layout')
|
|
|
|
const appStore = useAppStore()
|
|
|
|
// 是否是移动端
|
|
const mobile = computed(() => appStore.getMobile)
|
|
|
|
// 菜单折叠
|
|
const collapse = computed(() => appStore.getCollapse)
|
|
|
|
const layout = computed(() => appStore.getLayout)
|
|
|
|
const handleClickOutside = () => {
|
|
appStore.setCollapse(true)
|
|
}
|
|
|
|
const renderLayout = () => {
|
|
switch (unref(layout)) {
|
|
case 'classic':
|
|
const { renderClassic } = useRenderLayout()
|
|
return renderClassic()
|
|
case 'topLeft':
|
|
const { renderTopLeft } = useRenderLayout()
|
|
return renderTopLeft()
|
|
case 'top':
|
|
const { renderTop } = useRenderLayout()
|
|
return renderTop()
|
|
case 'cutMenu':
|
|
const { renderCutMenu } = useRenderLayout()
|
|
return renderCutMenu()
|
|
default:
|
|
break
|
|
}
|
|
}
|
|
|
|
export default defineComponent({
|
|
name: 'Layout',
|
|
setup() {
|
|
return () => (
|
|
<section class={[prefixCls, `${prefixCls}__${layout.value}`, 'w-[100%] h-[100%] relative']}>
|
|
{mobile.value && !collapse.value ? (
|
|
<div
|
|
class="absolute left-0 top-0 z-99 h-full w-full bg-[var(--el-color-black)] opacity-30"
|
|
onClick={handleClickOutside}
|
|
></div>
|
|
) : undefined}
|
|
|
|
{renderLayout()}
|
|
|
|
<Backtop></Backtop>
|
|
|
|
<Setting></Setting>
|
|
</section>
|
|
)
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
$prefix-cls: #{$namespace}-layout;
|
|
|
|
.#{$prefix-cls} {
|
|
background-color: var(--app-content-bg-color);
|
|
:deep(.#{$elNamespace}-scrollbar__view) {
|
|
height: 100% !important;
|
|
}
|
|
}
|
|
</style>
|