92 lines
1.9 KiB
Vue
92 lines
1.9 KiB
Vue
<template>
|
|
<div id="globalHeader">
|
|
<a-row :wrap="false">
|
|
<a-col flex="200px">
|
|
<RouterLink to="/">
|
|
<div class="title-bar">
|
|
<img class="logo" src="../assets/logo.ico" alt="logo" />
|
|
<div class="title">龙儿的云图库</div>
|
|
</div>
|
|
</RouterLink>
|
|
</a-col>
|
|
<a-col flex="auto">
|
|
<a-menu
|
|
v-model:selectedKeys="current"
|
|
mode="horizontal"
|
|
:items="items"
|
|
@click="doMenuClick"
|
|
/>
|
|
</a-col>
|
|
<a-col flex="120px">
|
|
<div class="user-login-status">
|
|
<div v-if="loginUserStore.loginUser.id">
|
|
{{ loginUserStore.loginUser.userName ?? '无名' }}
|
|
</div>
|
|
<div v-else>
|
|
<a-button type="primary" href="/user/login">登录</a-button>
|
|
</div>
|
|
</div>
|
|
</a-col>
|
|
</a-row>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { h, ref } from 'vue'
|
|
import { HomeOutlined } from '@ant-design/icons-vue'
|
|
import { useRouter } from 'vue-router'
|
|
import { useLoginUserStore } from '@/stores/useLoginUserStore.ts'
|
|
|
|
const loginUserStore = useLoginUserStore()
|
|
|
|
const items = [
|
|
{
|
|
key: '/',
|
|
icon: () => h(HomeOutlined),
|
|
label: '主页',
|
|
title: '主页',
|
|
},
|
|
{
|
|
key: '/about',
|
|
label: '关于',
|
|
title: '关于',
|
|
},
|
|
{
|
|
key: 'others',
|
|
label: h('a', { href: 'https://blog.huangge1199.cn', target: '_blank' }, '龙儿之家'),
|
|
title: '龙儿之家',
|
|
},
|
|
]
|
|
|
|
const router = useRouter()
|
|
// 当前要高亮的菜单项
|
|
const current = ref<string[]>([])
|
|
// 监听路由变化,更新高亮菜单项
|
|
router.afterEach((to, from, next) => {
|
|
current.value = [to.path]
|
|
})
|
|
|
|
const doMenuClick = ({ key }: { key: string }) => {
|
|
router.push({
|
|
path: key,
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.title-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.title {
|
|
color: black;
|
|
font-size: 18px;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.logo {
|
|
height: 48px;
|
|
}
|
|
</style>
|