mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
fix(hooks): 修复登录页切换登录页参数丢失问题
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
<global-logo />
|
||||
</div>
|
||||
<div class="flex-y-center h-full">
|
||||
<menu-collapse />
|
||||
<menu-collapse v-if="theme.navStyle.mode !== 'horizontal'" />
|
||||
<global-breadcrumb v-if="theme.crumbsStyle.visible" />
|
||||
</div>
|
||||
<div class="flex-1 flex justify-end h-full">
|
||||
|
6
src/layouts/BasicLayout/components/GlobalTab/index.vue
Normal file
6
src/layouts/BasicLayout/components/GlobalTab/index.vue
Normal file
@ -0,0 +1,6 @@
|
||||
<template>
|
||||
<div></div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup></script>
|
||||
<style scoped></style>
|
@ -14,6 +14,6 @@ const app = useAppStore();
|
||||
const theme = useThemeStore();
|
||||
const title = useAppTitle();
|
||||
|
||||
const showTitle = computed(() => !app.menu.collapsed && theme.navStyle.mode !== 'vertical-mix');
|
||||
const showTitle = computed(() => !app.menu.collapsed || !theme.isVerticalNav);
|
||||
</script>
|
||||
<style scoped></style>
|
||||
|
Reference in New Issue
Block a user