Files
lingji-work-fe/src/components/_base/navbar/index.vue

273 lines
7.4 KiB
Vue
Raw Normal View History

2025-06-16 14:42:26 +08:00
<script lang="ts" setup>
import { useAppStore } from '@/stores';
import { IconExport, IconFile, IconCaretDown } from '@arco-design/web-vue/es/icon';
import { fetchMenusTree } from '@/api/all';
2025-06-20 06:10:15 -04:00
import { handleUserLogout } from '@/utils/user';
2025-06-23 03:16:55 -04:00
import { fetchLogOut } from '@/api/all/login';
2025-06-23 23:59:08 -04:00
import { useSidebarStore } from '@/stores/modules/side-bar';
import { MENU_GROUP_IDS } from '@/router/constants';
import router from '@/router';
import { useRoute } from 'vue-router';
interface MenuItem {
name: string;
id: number;
children: Array<{
name: string;
}>;
}
const lists = ref<MenuItem[]>([]);
const sidebarStore = useSidebarStore();
const route = useRoute();
const selectedKey = computed(() => {
// 判断是否为工作台页面(假设路由名为 'Home' 或 path 为 '/'
if (route.name === 'Home' || route.path === '/') {
return [`${MENU_GROUP_IDS.WORK_BENCH_ID}`];
}
// 其他页面activeMenuId 作为 key
return [String(sidebarStore.activeMenuId)];
});
2025-06-23 03:16:55 -04:00
const clickExit = async () => {
const { code } = await fetchLogOut();
if (code === 200) {
handleUserLogout();
}
2025-06-17 11:18:39 +08:00
};
2025-06-16 14:42:26 +08:00
const getMenus = async () => {
const res = await fetchMenusTree();
2025-06-23 03:16:55 -04:00
if (res.code === 200) {
lists.value = res.data;
}
2025-06-16 14:42:26 +08:00
};
onMounted(() => {
getMenus();
});
const appStore = useAppStore();
const setServerMenu = () => {
router.push('/management/person');
};
2025-06-16 14:42:26 +08:00
const handleSelect = (index: any) => {
2025-06-23 03:16:55 -04:00
if (index === 0) {
2025-06-23 23:59:08 -04:00
router.push('/');
2025-06-17 11:18:39 +08:00
} else {
router.push('/dataEngine/hotTranslation');
2025-06-17 11:18:39 +08:00
}
};
const handleDopdownClick = (index: any, ind: any) => {
2025-06-23 23:59:08 -04:00
const { children } = lists.value[index];
const indPath = children[ind] as any;
if (indPath.name === '行业热门话题洞察') {
router.push('/dataEngine/hotTranslation');
2025-06-23 23:59:08 -04:00
} else if (indPath.name === '行业词云') {
router.push('/dataEngine/hotCloud');
2025-06-23 23:59:08 -04:00
} else if (indPath.name === '行业关键词动向') {
router.push('/dataEngine/keyWord');
2025-06-23 23:59:08 -04:00
} else if (indPath.name === '用户痛点观察') {
router.push('/dataEngine/userPainPoints');
2025-06-23 23:59:08 -04:00
} else if (indPath.name === '重点品牌动向') {
router.push('/dataEngine/keyBrandMovement');
2025-06-23 23:59:08 -04:00
} else if (indPath.name === '用户画像') {
router.push('/dataEngine/userPersona');
2025-06-17 11:18:39 +08:00
}
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-06-23 23:59:08 -04:00
<a-menu
mode="horizontal"
:selected-keys="selectedKey"
:default-selected-keys="[`${MENU_GROUP_IDS.WORK_BENCH_ID}`]"
>
2025-07-01 16:00:35 +08:00
<template #collapse-icon>
<icon-caret-down size="16" />
<icon-caret-up size="16" />
</template>
2025-06-23 23:59:08 -04:00
<a-menu-item :key="`${MENU_GROUP_IDS.WORK_BENCH_ID}`" @click="handleSelect(0)">
2025-07-01 16:00:35 +08:00
<span class="menu-item-text">工作台</span>
2025-06-16 14:42:26 +08:00
</a-menu-item>
2025-06-23 23:59:08 -04:00
<a-menu-item v-for="(item, index) in lists" :key="String(item.id)">
2025-07-01 16:00:35 +08:00
<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" />
</a-button>
2025-06-16 14:42:26 +08:00
<template #content>
2025-07-01 16:00:35 +08:00
<a-doption v-for="(child, ind) in item.children" :key="ind" @click="handleDopdownClick(index, ind)">
<span class="menu-item-text"> {{ child.name }}</span>
</a-doption>
2025-06-16 14:42:26 +08:00
</template>
</a-dropdown>
</a-menu-item>
</a-menu>
</div>
</div>
<ul class="right-side">
<li>
<a-dropdown trigger="click">
<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>
<div style="padding: 14px">
<a-doption>
<a-space @click="setServerMenu">
<img src="@/assets/option.svg" style="width: 16px; height: 16px" />
<span style="width: 140px; font-size: 12px">管理中心</span>
<icon-right />
</a-space>
</a-doption>
<a-doption>
<a-space>
<img src="@/assets/change.svg" style="width: 16px; height: 16px" />
<span style="width: 140px; font-size: 12px">切换企业账号</span>
<icon-right />
</a-space>
</a-doption>
<a-doption>
<a-space @click="clickExit">
<img src="@/assets/exit.svg" style="width: 16px; height: 16px" />
<span style="width: 140px; font-size: 12px">退出登录</span>
<icon-right />
</a-space>
</a-doption>
</div>
</template>
2025-06-16 14:42:26 +08:00
</a-dropdown>
</li>
</ul>
</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-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">
.layout-menu-item-dropdown {
.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);
}
}
}
}
}
</style>