2025-04-11 17:32:55 +08:00
|
|
|
<template>
|
|
|
|
<div class="user-centre-layout">
|
|
|
|
<UserMenu />
|
|
|
|
<Main />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup name="layout">
|
|
|
|
import { useSettingStore } from '@/store/modules/setting';
|
|
|
|
|
|
|
|
import UserMenu from './component/UserMenu';
|
|
|
|
import Main from './component/Main';
|
|
|
|
const SettingStore = useSettingStore();
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.user-centre-layout {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
.layout-main {
|
|
|
|
display: inline-block !important;
|
|
|
|
width: calc(100% - 320px) !important;
|
|
|
|
vertical-align: top;
|
|
|
|
padding: 16px 16px 16px 0;
|
2025-04-14 10:59:16 +08:00
|
|
|
.layout-main-inner {
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
2025-04-11 17:32:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|