2024-03-31 15:51:00 +08:00
|
|
|
<template>
|
2024-04-06 00:24:57 +08:00
|
|
|
<a-layout-header class="header">
|
|
|
|
|
<div class="header_crumb">
|
2024-04-06 15:43:15 +08:00
|
|
|
<div class="menu_fold">
|
|
|
|
|
<a-button size="mini" type="text" class="menu_fold_icon">
|
|
|
|
|
<template #icon>
|
|
|
|
|
<icon-menu-fold :size="18" />
|
|
|
|
|
</template>
|
|
|
|
|
</a-button>
|
|
|
|
|
</div>
|
2024-04-06 00:24:57 +08:00
|
|
|
<div class="breadcrumb">
|
|
|
|
|
<a-space direction="vertical">
|
|
|
|
|
<a-breadcrumb>
|
|
|
|
|
<a-breadcrumb-item>
|
|
|
|
|
<icon-home />
|
|
|
|
|
首页
|
|
|
|
|
</a-breadcrumb-item>
|
|
|
|
|
<a-breadcrumb-item>
|
|
|
|
|
<icon-at />
|
|
|
|
|
常用组件
|
|
|
|
|
</a-breadcrumb-item>
|
|
|
|
|
<a-breadcrumb-item>
|
|
|
|
|
<icon-at />
|
|
|
|
|
文件上传
|
|
|
|
|
</a-breadcrumb-item>
|
|
|
|
|
</a-breadcrumb>
|
|
|
|
|
</a-space>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="header_setting">
|
|
|
|
|
<a-tooltip content="语言">
|
2024-04-06 15:43:15 +08:00
|
|
|
<a-button size="mini" type="text" class="icon_btn">
|
|
|
|
|
<template #icon>
|
|
|
|
|
<icon-language :size="18" />
|
|
|
|
|
</template>
|
|
|
|
|
</a-button>
|
2024-04-06 00:24:57 +08:00
|
|
|
</a-tooltip>
|
|
|
|
|
<a-tooltip content="切换黑夜模式">
|
2024-04-06 15:43:15 +08:00
|
|
|
<a-button size="mini" type="text" class="icon_btn">
|
|
|
|
|
<template #icon>
|
|
|
|
|
<icon-sun-fill :size="18" />
|
|
|
|
|
</template>
|
|
|
|
|
</a-button>
|
2024-04-06 00:24:57 +08:00
|
|
|
</a-tooltip>
|
|
|
|
|
<a-tooltip content="通知">
|
2024-04-06 15:43:15 +08:00
|
|
|
<a-button size="mini" type="text" class="icon_btn">
|
|
|
|
|
<template #icon>
|
|
|
|
|
<icon-notification :size="18" />
|
|
|
|
|
</template>
|
|
|
|
|
</a-button>
|
2024-04-06 00:24:57 +08:00
|
|
|
</a-tooltip>
|
|
|
|
|
<a-tooltip content="全屏">
|
2024-04-06 15:43:15 +08:00
|
|
|
<a-button size="mini" type="text" class="icon_btn">
|
|
|
|
|
<template #icon>
|
|
|
|
|
<icon-fullscreen :size="18" />
|
|
|
|
|
</template>
|
|
|
|
|
</a-button>
|
2024-04-06 00:24:57 +08:00
|
|
|
</a-tooltip>
|
|
|
|
|
<a-tooltip content="系统设置">
|
2024-04-06 15:43:15 +08:00
|
|
|
<a-button size="mini" type="text" class="icon_btn">
|
|
|
|
|
<template #icon>
|
|
|
|
|
<icon-settings :size="18" />
|
|
|
|
|
</template>
|
|
|
|
|
</a-button>
|
2024-04-06 00:24:57 +08:00
|
|
|
</a-tooltip>
|
|
|
|
|
<a-tooltip content="主题设置">
|
2024-04-06 15:43:15 +08:00
|
|
|
<a-button size="mini" type="text" class="icon_btn">
|
|
|
|
|
<template #icon>
|
|
|
|
|
<icon-skin :size="18" />
|
|
|
|
|
</template>
|
|
|
|
|
</a-button>
|
2024-04-06 00:24:57 +08:00
|
|
|
</a-tooltip>
|
2024-04-06 15:43:15 +08:00
|
|
|
<div class="my_image"><a-image width="36" :src="Tom" /></div>
|
2024-04-06 00:24:57 +08:00
|
|
|
</div>
|
|
|
|
|
</a-layout-header>
|
2024-03-31 15:51:00 +08:00
|
|
|
</template>
|
2024-04-06 00:24:57 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import Tom from "@/assets/img/tom.jpg";
|
|
|
|
|
</script>
|
2024-03-31 15:51:00 +08:00
|
|
|
|
2024-04-02 21:00:21 +08:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.header {
|
|
|
|
|
height: 60px;
|
2024-04-06 00:24:57 +08:00
|
|
|
padding: 0 $padding;
|
2024-04-02 21:00:21 +08:00
|
|
|
box-sizing: border-box;
|
2024-04-06 00:24:57 +08:00
|
|
|
border-bottom: $border-1 solid $color-border-2;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.header_crumb {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.menu_fold {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
align-items: center;
|
2024-04-06 15:43:15 +08:00
|
|
|
.menu_fold_icon {
|
|
|
|
|
color: $color-text-1;
|
|
|
|
|
border-radius: $radius-box;
|
|
|
|
|
}
|
2024-04-06 00:24:57 +08:00
|
|
|
}
|
|
|
|
|
.breadcrumb {
|
|
|
|
|
margin-left: $margin;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.header_setting {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2024-04-06 15:43:15 +08:00
|
|
|
> .icon_btn {
|
|
|
|
|
width: $icon-box;
|
|
|
|
|
height: $icon-box;
|
|
|
|
|
border-radius: $radius-box;
|
2024-04-06 00:24:57 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
margin-left: $margin;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
align-items: center;
|
2024-04-06 15:43:15 +08:00
|
|
|
color: $color-text-1;
|
2024-04-06 00:24:57 +08:00
|
|
|
}
|
2024-04-06 15:43:15 +08:00
|
|
|
|
2024-04-06 00:24:57 +08:00
|
|
|
.my_image {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
2024-04-06 15:43:15 +08:00
|
|
|
border-radius: 50%;
|
|
|
|
|
margin-left: $margin;
|
2024-04-06 00:24:57 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-02 21:00:21 +08:00
|
|
|
}
|
|
|
|
|
</style>
|