2025-07-07 18:17:31 +08:00
|
|
|
<script setup>
|
2025-07-07 18:19:17 +08:00
|
|
|
import { useAppStore } from '@/stores';
|
|
|
|
|
import { useEnterpriseStore } from '@/stores/modules/enterprise';
|
2025-07-07 18:17:31 +08:00
|
|
|
// import { IconExport, IconFile, IconCaretDown } from '@arco-design/web-vue/es/icon';
|
|
|
|
|
// import { handleUserLogout } from '@/utils/user';
|
|
|
|
|
// import { fetchLogOut } from '@/api/all/login';
|
2025-06-23 23:59:08 -04:00
|
|
|
import { useSidebarStore } from '@/stores/modules/side-bar';
|
2025-07-07 18:19:17 +08:00
|
|
|
import { MENU_GROUP_IDS } from '@/router/constants';
|
2025-06-23 23:59:08 -04:00
|
|
|
import router from '@/router';
|
2025-07-07 18:17:31 +08:00
|
|
|
// import { useRoute } from 'vue-router';
|
2025-07-01 17:52:41 +08:00
|
|
|
import ExitAccountModal from '@/components/_base/exit-account-modal/index.vue';
|
2025-07-07 18:17:31 +08:00
|
|
|
// import { appRoutes } from '@/router/routes';
|
|
|
|
|
// import { MENU_LIST } from './constants';
|
2025-06-23 23:59:08 -04:00
|
|
|
|
|
|
|
|
const sidebarStore = useSidebarStore();
|
2025-07-07 18:17:31 +08:00
|
|
|
// const enterpriseStore = useEnterpriseStore();
|
|
|
|
|
// const route = useRoute();
|
2025-07-01 17:52:41 +08:00
|
|
|
const exitAccountModalRef = ref(null);
|
2025-07-07 18:17:31 +08:00
|
|
|
// const selectedKey = ref([]);
|
|
|
|
|
|
2025-06-23 23:59:08 -04:00
|
|
|
const selectedKey = computed(() => {
|
|
|
|
|
return [String(sidebarStore.activeMenuId)];
|
|
|
|
|
});
|
2025-07-07 18:17:31 +08:00
|
|
|
const menuList = computed(() => {
|
|
|
|
|
return sidebarStore.menuList;
|
|
|
|
|
});
|
2025-06-23 03:16:55 -04:00
|
|
|
|
|
|
|
|
const clickExit = async () => {
|
2025-07-01 17:52:41 +08:00
|
|
|
exitAccountModalRef.value?.open();
|
2025-06-17 11:18:39 +08:00
|
|
|
};
|
2025-07-07 18:17:31 +08:00
|
|
|
|
|
|
|
|
// const appStore = useAppStore();
|
2025-06-16 14:42:26 +08:00
|
|
|
|
2025-06-23 05:58:04 -04:00
|
|
|
const setServerMenu = () => {
|
|
|
|
|
router.push('/management/person');
|
|
|
|
|
};
|
2025-06-17 11:18:39 +08:00
|
|
|
|
2025-07-07 18:17:31 +08:00
|
|
|
const handleDopdownClick = (item) => {
|
2025-07-10 10:04:21 +08:00
|
|
|
router.push({ name: item.routeName });
|
2025-06-16 14:42:26 +08:00
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="navbar">
|
|
|
|
|
<div class="left-side">
|
2025-07-01 16:00:35 +08:00
|
|
|
<a-space class="cursor-pointer" @click="router.push('/')">
|
2025-06-17 11:18:39 +08:00
|
|
|
<img src="@/assets/logo.svg" alt="" />
|
2025-06-16 14:42:26 +08:00
|
|
|
</a-space>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="center-side">
|
2025-07-01 16:00:35 +08:00
|
|
|
<div class="menu-demo h-100%">
|
2025-07-07 18:17:31 +08:00
|
|
|
<a-menu mode="horizontal" :selected-keys="selectedKey">
|
|
|
|
|
<a-menu-item v-for="item in menuList" :key="String(item.id)">
|
|
|
|
|
<template v-if="item.children">
|
|
|
|
|
<a-dropdown :popup-max-height="false" class="layout-menu-item-dropdown">
|
|
|
|
|
<a-button>
|
|
|
|
|
<span class="menu-item-text mr-2px"> {{ item.name }}</span>
|
|
|
|
|
<icon-caret-down size="16" class="arco-icon-down !mr-0" />
|
|
|
|
|
</a-button>
|
|
|
|
|
<template #content>
|
|
|
|
|
<a-doption v-for="(child, ind) in item.children" :key="ind" @click="handleDopdownClick(child)">
|
|
|
|
|
<span class="menu-item-text"> {{ child.name }}</span>
|
|
|
|
|
</a-doption>
|
|
|
|
|
</template>
|
|
|
|
|
</a-dropdown>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else>
|
|
|
|
|
<a-menu-item :key="String(item.id)" @click="handleDopdownClick(item)">
|
|
|
|
|
<span class="menu-item-text"> {{ item.name }}</span>
|
|
|
|
|
</a-menu-item>
|
|
|
|
|
</template>
|
2025-06-16 14:42:26 +08:00
|
|
|
</a-menu-item>
|
|
|
|
|
</a-menu>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<ul class="right-side">
|
|
|
|
|
<li>
|
2025-07-01 17:52:41 +08:00
|
|
|
<a-dropdown trigger="click" class="layout-avatar-dropdown">
|
2025-06-16 14:42:26 +08:00
|
|
|
<a-avatar class="cursor-pointer" :size="32">
|
2025-06-17 11:18:39 +08:00
|
|
|
<img alt="avatar" src="@/assets/avatar.svg" />
|
2025-06-16 14:42:26 +08:00
|
|
|
</a-avatar>
|
2025-06-17 11:18:39 +08:00
|
|
|
<template #content>
|
2025-07-01 17:52:41 +08:00
|
|
|
<div>
|
2025-06-17 11:18:39 +08:00
|
|
|
<a-doption>
|
2025-07-01 17:52:41 +08:00
|
|
|
<a-space class="flex justify-between w-100%" @click="setServerMenu">
|
|
|
|
|
<div class="flex items-center">
|
|
|
|
|
<img src="@/assets/option.svg" class="w-16px h-16px mr-8px" />
|
|
|
|
|
<span>管理中心</span>
|
|
|
|
|
</div>
|
|
|
|
|
<icon-right size="12" />
|
2025-06-17 11:18:39 +08:00
|
|
|
</a-space>
|
|
|
|
|
</a-doption>
|
2025-07-01 17:52:41 +08:00
|
|
|
<!-- <a-doption>
|
|
|
|
|
<a-space class="flex justify-between w-100%">
|
|
|
|
|
<div class="flex items-center">
|
|
|
|
|
<img src="@/assets/change.svg" class="w-16px h-16px mr-8px" />
|
|
|
|
|
<span>切换企业账号</span>
|
|
|
|
|
</div>
|
|
|
|
|
<icon-right size="12" />
|
2025-06-17 11:18:39 +08:00
|
|
|
</a-space>
|
2025-07-01 17:52:41 +08:00
|
|
|
</a-doption> -->
|
2025-06-17 11:18:39 +08:00
|
|
|
<a-doption>
|
2025-07-01 17:52:41 +08:00
|
|
|
<a-space class="flex justify-between w-100%" @click="clickExit">
|
|
|
|
|
<div class="flex items-center">
|
|
|
|
|
<img src="@/assets/exit.svg" class="w-16px h-16px mr-8px" />
|
|
|
|
|
<span>退出登录</span>
|
|
|
|
|
</div>
|
|
|
|
|
<icon-right size="12" />
|
2025-06-17 11:18:39 +08:00
|
|
|
</a-space>
|
|
|
|
|
</a-doption>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
2025-06-16 14:42:26 +08:00
|
|
|
</a-dropdown>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
2025-07-01 17:52:41 +08:00
|
|
|
<ExitAccountModal ref="exitAccountModalRef" />
|
2025-06-16 14:42:26 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
2025-07-01 16:00:35 +08:00
|
|
|
<style scoped lang="scss">
|
2025-06-16 14:42:26 +08:00
|
|
|
.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;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
margin-left: 40px;
|
2025-07-01 16:00:35 +08:00
|
|
|
.menu-item-text {
|
|
|
|
|
color: var(--Text-2, #3c4043);
|
|
|
|
|
font-family: 'PuHuiTi-Medium';
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
}
|
|
|
|
|
:deep(.arco-menu) {
|
|
|
|
|
height: 100%;
|
|
|
|
|
.arco-menu-inner {
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
}
|
|
|
|
|
.arco-menu-item {
|
|
|
|
|
padding: 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
&.arco-menu-selected {
|
|
|
|
|
.menu-item-text,
|
|
|
|
|
.arco-menu-selected-label {
|
|
|
|
|
color: #6d4cfe;
|
|
|
|
|
}
|
|
|
|
|
.arco-menu-selected-label {
|
|
|
|
|
background: var(--Brand-Brand-6, #6d4cfe);
|
|
|
|
|
height: 4px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
width: 50%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: -8px;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-07-01 16:39:47 +08:00
|
|
|
.arco-icon-down {
|
|
|
|
|
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
|
}
|
|
|
|
|
.arco-dropdown-open .arco-icon-down {
|
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
}
|
2025-06-16 14:42:26 +08:00
|
|
|
}
|
|
|
|
|
.cneter-tip {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: var(--color-text-1);
|
|
|
|
|
}
|
|
|
|
|
.menu-demo {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
.right-side {
|
|
|
|
|
display: flex;
|
|
|
|
|
padding-right: 20px;
|
|
|
|
|
list-style: none;
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2025-07-01 16:00:35 +08:00
|
|
|
|
|
|
|
|
<style lang="scss">
|
2025-07-01 17:52:41 +08:00
|
|
|
.layout-menu-item-dropdown,
|
|
|
|
|
.layout-avatar-dropdown {
|
2025-07-01 16:00:35 +08:00
|
|
|
.arco-dropdown {
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border: 1px solid var(--BG-300, #e6e6e8);
|
|
|
|
|
background: var(--BG-white, #fff);
|
|
|
|
|
padding: 12px 0px;
|
|
|
|
|
.arco-dropdown-option {
|
|
|
|
|
padding: 0 12px;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
&-content {
|
|
|
|
|
display: flex;
|
|
|
|
|
height: 40px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 10px 24px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.menu-item-text {
|
|
|
|
|
color: var(--Text-2, #3c4043);
|
|
|
|
|
font-family: 'PuHuiTi-Regular';
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 22px; /* 137.5% */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&:not(.arco-dropdown-option-disabled):hover {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
.arco-dropdown-option-content {
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
background: var(--BG-200, #f2f3f5);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-07-01 17:52:41 +08:00
|
|
|
.layout-avatar-dropdown {
|
|
|
|
|
width: 200px;
|
|
|
|
|
.arco-dropdown {
|
|
|
|
|
padding: 12px 4px;
|
|
|
|
|
.arco-dropdown-option {
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
&-content {
|
|
|
|
|
padding: 0 12px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-07-01 16:00:35 +08:00
|
|
|
</style>
|