Files
GEAR-OA/gear-ui3/src/components/AllApplications.vue
2025-09-05 09:28:13 +08:00

242 lines
5.5 KiB
Vue

<template>
<div class="all-applications-container">
<h3 class="title">全部应用</h3>
<el-tabs v-model="activeTabName" class="app-tabs">
<el-tab-pane
v-for="menu in filteredMenus"
:key="menu.path"
:label="menu.meta?.title"
:name="menu.path"
>
<div class="app-grid">
<div
v-for="child in menu.children"
:key="child.path"
class="app-item"
@click="handleAppClick(menu, child)"
>
<!-- 图标区域 -->
<div class="app-icon-wrapper">
<svg-icon :icon-class="child.meta.icon || 'documentation'" class="app-icon" />
</div>
<!-- 文字区域 -->
<span class="app-name">{{ child.meta?.title }}</span>
<!-- 三点菜单区域 -->
<div class="app-actions">
<el-dropdown
trigger="hover"
@click.native.stop
@command="(command) => handleCommand(command, menu, child)"
>
<span class="actions-icon">
<More />
</span>
<template #dropdown>
<el-dropdown-menu>
<el-dropdown-item command="addFavorites">
添加到常用
</el-dropdown-item>
</el-dropdown-menu>
</template>
</el-dropdown>
</div>
</div>
</div>
</el-tab-pane>
</el-tabs>
</div>
</template>
<script>
import { getRouters } from '@/api/menu'
import { More } from '@element-plus/icons-vue'
export default {
name: 'AllApplications',
data() {
return {
allMenus: [],
activeTabName: ''
}
},
computed: {
filteredMenus() {
const filterHidden = (menus) => {
console.log(menus)
return menus
.filter(menu => menu.hidden !== true)
.map(menu => {
if (menu.children) {
menu.children = filterHidden(menu.children)
}
return menu
})
}
const topLevelMenus = filterHidden(this.allMenus).filter(
menu => menu.children && menu.children.length > 0
)
return topLevelMenus
}
},
created() {
this.fetchMenus()
},
methods: {
fetchMenus() {
getRouters().then(response => {
this.allMenus = response.data
if (this.filteredMenus.length > 0) {
this.activeTabName = this.filteredMenus[0].path
}
})
},
handleAppClick(parentMenu, childMenu) {
const basePath = parentMenu.path
const fullPath = `${basePath}/${childMenu.path}`
this.$router.push(fullPath)
},
// 处理添加到常用功能
handleAddToFavorites(parentMenu, childMenu) {
// 构建完整的应用信息
const appInfo = {
parent: parentMenu,
child: childMenu,
fullPath: `${parentMenu.path}/${childMenu.path}`,
timestamp: new Date().getTime()
}
console.log(appInfo)
// 向父组件发送事件
this.$emit('addFavorites', appInfo)
},
handleCommand(command, parentMenu, childMenu) {
if (command === 'addFavorites') {
this.handleAddToFavorites(parentMenu, childMenu)
}
}
}
}
</script>
<style lang="scss" scoped>
.all-applications-container {
padding: 20px;
border-radius: 8px;
margin-top: 20px;
}
.title {
font-size: 18px;
font-weight: 600;
margin-bottom: 16px;
color: #303133;
}
/* 应用列表容器改为 flex 横向布局 */
.app-grid {
display: flex;
flex-wrap: wrap;
gap: 16px;
padding-top: 10px;
margin: 10px 0;
}
/* 每个应用 item 样式 */
.app-item {
display: flex;
flex-direction: row; /* 横向排列 */
align-items: center;
cursor: pointer;
border-radius: 8px;
padding: 20px;
width: 160px;
transition: all 0.3s ease;
background-color: #ffffff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); /* 初始阴影更浅 */
position: relative; /* 为三点菜单定位做准备 */
&:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* 悬停加深阴影 */
transform: translateY(-2px); /* 轻微上浮增强交互感 */
}
}
/* 图标区域 */
.app-icon-wrapper {
width: 40px;
height: 40px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 12px; /* 与文字保持间距 */
background-color: #f5f7fa; /* 浅背景突出图标 */
transition: background-color 0.3s ease;
/* hover 时图标区域背景变化 */
.app-item:hover & {
background-color: #e6f0ff;
}
}
/* 图标样式 */
.app-icon {
font-size: 24px;
color: #409eff;
}
/* 应用名称样式 */
.app-name {
font-size: 14px;
color: #606266;
flex: 1; /* 占满剩余空间,让三点菜单靠右 */
}
/* 三点菜单样式 */
.app-actions {
position: absolute;
top: 8px;
right: 8px;
opacity: 0; /* 默认隐藏 */
transition: opacity 0.3s ease;
}
/* 鼠标悬停在卡片上时显示三点菜单 */
.app-item:hover .app-actions {
opacity: 1;
}
.actions-icon {
cursor: pointer;
display: inline-block;
width: 16px;
height: 16px;
display: flex;
align-items: center;
justify-content: center;
border: none;
}
/* Tabs 样式优化 */
:deep(.el-tabs__header) {
margin-bottom: 12px;
}
:deep(.el-tabs__nav-wrap::after) {
height: 1px;
}
:deep(.el-tabs__item) {
font-size: 15px;
}
/* 下拉菜单样式调整 */
:deep(.el-dropdown-menu) {
min-width: 120px;
}
:deep(.el-dropdown-item) {
padding: 6px 16px;
font-size: 14px;
}
</style>