299 lines
7.3 KiB
Vue
299 lines
7.3 KiB
Vue
<template>
|
|
<div class="navbar">
|
|
<div class="left-side">
|
|
<a-space>
|
|
<img style="height: 24px" alt="logo" src="../../image/票据服务.png" />
|
|
<a-typography-title
|
|
:style="{ margin: 0, fontSize: '18px' }"
|
|
:heading="5"
|
|
@click="
|
|
{
|
|
router.push({ name: 'Workplace' });
|
|
}
|
|
"
|
|
>
|
|
{{ $t('ticket.manage.system') }}
|
|
</a-typography-title>
|
|
<icon-menu-fold
|
|
v-if="!topMenu && appStore.device === 'mobile'"
|
|
style="font-size: 22px; cursor: pointer"
|
|
@click="toggleDrawerMenu"
|
|
/>
|
|
</a-space>
|
|
</div>
|
|
<div class="center-side">
|
|
<Menu v-if="topMenu" />
|
|
</div>
|
|
<ul class="right-side">
|
|
<li>
|
|
<a-tooltip content="消息中心">
|
|
<a-button
|
|
class="nav-btn"
|
|
type="outline"
|
|
:shape="'circle'"
|
|
@click="$router.push({ name: 'notice' })"
|
|
>
|
|
<template #icon>
|
|
<a-badge :count="9" dot :offset="[2, -2]">
|
|
<icon-message />
|
|
</a-badge>
|
|
</template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
</li>
|
|
<li>
|
|
<a-tooltip :content="$t('settings.language')">
|
|
<a-button
|
|
class="nav-btn"
|
|
type="outline"
|
|
:shape="'circle'"
|
|
@click="setDropDownVisible"
|
|
>
|
|
<template #icon>
|
|
<icon-language />
|
|
</template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
<a-dropdown trigger="click" @select="changeLocale as any">
|
|
<div ref="triggerBtn" class="trigger-btn"></div>
|
|
<template #content>
|
|
<a-doption
|
|
v-for="item in locales"
|
|
:key="item.value"
|
|
:value="item.value"
|
|
>
|
|
<template #icon>
|
|
<icon-check v-show="item.value === currentLocale" />
|
|
</template>
|
|
{{ item.label }}
|
|
</a-doption>
|
|
</template>
|
|
</a-dropdown>
|
|
</li>
|
|
<li>
|
|
<a-tooltip
|
|
:content="
|
|
theme === 'light'
|
|
? $t('settings.navbar.theme.toDark')
|
|
: $t('settings.navbar.theme.toLight')
|
|
"
|
|
>
|
|
<a-button
|
|
class="nav-btn"
|
|
type="outline"
|
|
:shape="'circle'"
|
|
@click="handleToggleTheme"
|
|
>
|
|
<template #icon>
|
|
<icon-moon-fill v-if="theme === 'dark'" />
|
|
<icon-sun-fill v-else />
|
|
</template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
</li>
|
|
|
|
<li>
|
|
<a-tooltip
|
|
:content="
|
|
isFullscreen
|
|
? $t('settings.navbar.screen.toExit')
|
|
: $t('settings.navbar.screen.toFull')
|
|
"
|
|
>
|
|
<a-button
|
|
class="nav-btn"
|
|
type="outline"
|
|
:shape="'circle'"
|
|
@click="toggleFullScreen"
|
|
>
|
|
<template #icon>
|
|
<icon-fullscreen-exit v-if="isFullscreen" />
|
|
<icon-fullscreen v-else />
|
|
</template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
</li>
|
|
<li>
|
|
<a-tooltip :content="$t('settings.title')">
|
|
<a-button
|
|
class="nav-btn"
|
|
type="outline"
|
|
:shape="'circle'"
|
|
@click="setVisible"
|
|
>
|
|
<template #icon>
|
|
<icon-settings />
|
|
</template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
</li>
|
|
|
|
<li>
|
|
<a-button status="normal">{{ userStore.permissions }}</a-button>
|
|
</li>
|
|
<li>
|
|
<a-dropdown trigger="click">
|
|
<a-button style="margin-right: 20px" status="normal">{{
|
|
userStore.nickName
|
|
}}</a-button>
|
|
<a-avatar
|
|
:size="32"
|
|
:style="{ marginRight: '8px', cursor: 'pointer' }"
|
|
>
|
|
<img
|
|
v-if="userStore.avatar"
|
|
alt="avatar"
|
|
:src="'/api/rest/attachment/' + avatar"
|
|
/>
|
|
<img v-else :src="userIcon" alt="" />
|
|
</a-avatar>
|
|
<template #content>
|
|
<a-doption>
|
|
<a-space @click="$router.push({ name: 'Setting' })">
|
|
<icon-settings />
|
|
<span>
|
|
{{ $t('messageBox.userSettings') }}
|
|
</span>
|
|
</a-space>
|
|
</a-doption>
|
|
<a-doption>
|
|
<a-space @click="handleLogout">
|
|
<icon-export />
|
|
<span>
|
|
{{ $t('messageBox.logout') }}
|
|
</span>
|
|
</a-space>
|
|
</a-doption>
|
|
</template>
|
|
</a-dropdown>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, ref, inject } from 'vue';
|
|
import { useDark, useToggle, useFullscreen } from '@vueuse/core';
|
|
import { useAppStore, useUserStore } from '@/store';
|
|
import { LOCALE_OPTIONS } from '@/locale';
|
|
import useLocale from '@/hooks/locale';
|
|
|
|
import Menu from '@/components/menu/index.vue';
|
|
import userIcon from '@/assets/images/user-circle.png';
|
|
import { useRouter } from 'vue-router';
|
|
import { clearToken } from '@/utils/auth';
|
|
|
|
const router = useRouter();
|
|
const appStore = useAppStore();
|
|
const userStore = useUserStore();
|
|
|
|
const { changeLocale, currentLocale } = useLocale();
|
|
const { isFullscreen, toggle: toggleFullScreen } = useFullscreen();
|
|
const locales = [...LOCALE_OPTIONS];
|
|
const avatar = computed(() => {
|
|
return userStore.avatar ? userStore.avatar : userIcon;
|
|
});
|
|
const theme = computed(() => {
|
|
return appStore.theme;
|
|
});
|
|
const topMenu = computed(() => appStore.topMenu && appStore.menu);
|
|
const isDark = useDark({
|
|
selector: 'body',
|
|
attribute: 'arco-theme',
|
|
valueDark: 'dark',
|
|
valueLight: 'light',
|
|
storageKey: 'arco-theme',
|
|
onChanged(dark: boolean) {
|
|
// overridden default behavior
|
|
appStore.toggleTheme(dark);
|
|
},
|
|
});
|
|
const toggleTheme = useToggle(isDark);
|
|
|
|
const handleToggleTheme = () => {
|
|
toggleTheme();
|
|
};
|
|
const setVisible = () => {
|
|
appStore.updateSettings({ globalSettings: true });
|
|
};
|
|
|
|
const triggerBtn = ref();
|
|
|
|
const handleLogout = () => {
|
|
clearToken();
|
|
router.push({
|
|
name: 'login',
|
|
});
|
|
};
|
|
const setDropDownVisible = () => {
|
|
const event = new MouseEvent('click', {
|
|
view: window,
|
|
bubbles: true,
|
|
cancelable: true,
|
|
});
|
|
triggerBtn.value.dispatchEvent(event);
|
|
};
|
|
|
|
const toggleDrawerMenu = inject('toggleDrawerMenu') as () => void;
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.navbar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
height: 100%;
|
|
background-color: var(--color-bg-2);
|
|
border-bottom: 1px solid var(--color-border);
|
|
}
|
|
|
|
.left-side {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.center-side {
|
|
flex: 1;
|
|
}
|
|
|
|
.right-side {
|
|
display: flex;
|
|
padding-right: 20px;
|
|
list-style: none;
|
|
:deep(.locale-select) {
|
|
border-radius: 20px;
|
|
}
|
|
li {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
a {
|
|
color: var(--color-text-1);
|
|
text-decoration: none;
|
|
}
|
|
.nav-btn {
|
|
border-color: rgb(var(--gray-2));
|
|
color: rgb(var(--gray-8));
|
|
font-size: 16px;
|
|
}
|
|
.trigger-btn,
|
|
.ref-btn {
|
|
position: absolute;
|
|
bottom: 14px;
|
|
}
|
|
.trigger-btn {
|
|
margin-left: 14px;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<style lang="less">
|
|
.message-popover {
|
|
.arco-popover-content {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
</style>
|