|
|
|
@ -1,10 +1,7 @@
|
|
|
|
|
<script lang="tsx"> |
|
|
|
|
import { defineComponent, computed } from 'vue' |
|
|
|
|
import { Message } from '@/layout/components//Message' |
|
|
|
|
import { Collapse } from '@/layout/components/Collapse' |
|
|
|
|
import { UserInfo } from '@/layout/components/UserInfo' |
|
|
|
|
import { Screenfull } from '@/layout/components/Screenfull' |
|
|
|
|
import { Breadcrumb } from '@/layout/components/Breadcrumb' |
|
|
|
|
import { SizeDropdown } from '@/layout/components/SizeDropdown' |
|
|
|
|
import { LocaleDropdown } from '@/layout/components/LocaleDropdown' |
|
|
|
|
import { Screen } from '@/layout/components/Screen' |
|
|
|
@ -14,15 +11,10 @@ import { useDesign } from '@/hooks/web/useDesign'
|
|
|
|
|
|
|
|
|
|
const { getPrefixCls, variables } = useDesign() |
|
|
|
|
|
|
|
|
|
const prefixCls = getPrefixCls('tool-header') |
|
|
|
|
|
|
|
|
|
const appStore = useAppStore() |
|
|
|
|
|
|
|
|
|
// 面包屑 |
|
|
|
|
const breadcrumb = computed(() => appStore.getBreadcrumb) |
|
|
|
|
|
|
|
|
|
// 折叠图标 |
|
|
|
|
const hamburger = computed(() => appStore.getHamburger) |
|
|
|
|
|
|
|
|
|
// 全屏图标 |
|
|
|
|
const screenfull = computed(() => appStore.getScreenfull) |
|
|
|
@ -33,14 +25,11 @@ const search = computed(() => appStore.search)
|
|
|
|
|
// 尺寸图标 |
|
|
|
|
const size = computed(() => appStore.getSize) |
|
|
|
|
|
|
|
|
|
// 布局 |
|
|
|
|
const layout = computed(() => appStore.getLayout) |
|
|
|
|
|
|
|
|
|
// 多语言图标 |
|
|
|
|
const locale = computed(() => appStore.getLocale) |
|
|
|
|
|
|
|
|
|
// 消息图标 |
|
|
|
|
const message = computed(() => appStore.getMessage) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default defineComponent({ |
|
|
|
|
name: 'ToolHeader', |
|
|
|
@ -51,17 +40,17 @@ export default defineComponent({
|
|
|
|
|
class=" relative flex items-cente " |
|
|
|
|
> |
|
|
|
|
<div class="flex items-center" > |
|
|
|
|
<Screen class="custom-hover" color="var(--top-header-text-color)" /> |
|
|
|
|
<Screen class="block" color="var(--top-header-text-color)" /> |
|
|
|
|
{screenfull.value ? ( |
|
|
|
|
<Screenfull class="custom-hover" color="var(--top-header-text-color)"></Screenfull> |
|
|
|
|
<Screenfull class="block" color="var(--top-header-text-color)"></Screenfull> |
|
|
|
|
) : undefined} |
|
|
|
|
{search.value ? <RouterSearch isModal={false} /> : undefined} |
|
|
|
|
{size.value ? ( |
|
|
|
|
<SizeDropdown class="custom-hover" color="var(--top-header-text-color)"></SizeDropdown> |
|
|
|
|
<SizeDropdown class="block" color="var(--top-header-text-color)"></SizeDropdown> |
|
|
|
|
) : undefined} |
|
|
|
|
{locale.value ? ( |
|
|
|
|
<LocaleDropdown |
|
|
|
|
class="custom-hover" |
|
|
|
|
class="block" |
|
|
|
|
color="var(--top-header-text-color)" |
|
|
|
|
></LocaleDropdown> |
|
|
|
|
) : undefined} |
|
|
|
@ -79,4 +68,12 @@ $prefix-cls: #{$namespace}-tool-header;
|
|
|
|
|
.#{$prefix-cls} { |
|
|
|
|
transition: left var(--transition-time-02); |
|
|
|
|
} |
|
|
|
|
.block{ |
|
|
|
|
display: flex; |
|
|
|
|
height: 100%; |
|
|
|
|
padding: 0 10px; |
|
|
|
|
cursor: pointer; |
|
|
|
|
align-items: center; |
|
|
|
|
transition: background var(--transition-time-02); |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|