mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-05 05:42:45 +08:00
109 lines
2.3 KiB
Vue
109 lines
2.3 KiB
Vue
<template>
|
|
<component
|
|
:is="menuComponent"
|
|
v-if="!item.hidden"
|
|
:full-path="fullPath"
|
|
:item="item"
|
|
:route-children="routeChildren"
|
|
>
|
|
<template v-if="item.children && item.children.length">
|
|
<vab-side-bar-item
|
|
v-for="route in item.children"
|
|
:key="route.path"
|
|
:full-path="handlePath(route.path)"
|
|
:item="route"
|
|
/>
|
|
</template>
|
|
</component>
|
|
</template>
|
|
|
|
<script>
|
|
import { isExternal } from '@/utils/validate'
|
|
import path from 'path'
|
|
|
|
export default {
|
|
name: 'VabSideBarItem',
|
|
props: {
|
|
item: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
fullPath: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
},
|
|
data() {
|
|
this.onlyOneChild = null
|
|
return {}
|
|
},
|
|
computed: {
|
|
menuComponent() {
|
|
if (
|
|
this.handleChildren(this.item.children, this.item) &&
|
|
(!this.routeChildren.children ||
|
|
this.routeChildren.notShowChildren) &&
|
|
!this.item.alwaysShow
|
|
) {
|
|
return 'VabMenuItem'
|
|
} else {
|
|
return 'VabSubmenu'
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
handleChildren(children = [], parent) {
|
|
if (children === null) children = []
|
|
const showChildren = children.filter((item) => {
|
|
if (item.hidden) {
|
|
return false
|
|
} else {
|
|
this.routeChildren = item
|
|
return true
|
|
}
|
|
})
|
|
if (showChildren.length === 1) {
|
|
return true
|
|
}
|
|
|
|
if (showChildren.length === 0) {
|
|
this.routeChildren = {
|
|
...parent,
|
|
path: '',
|
|
notShowChildren: true,
|
|
}
|
|
return true
|
|
}
|
|
return false
|
|
},
|
|
handlePath(routePath) {
|
|
if (isExternal(routePath)) {
|
|
return routePath
|
|
}
|
|
if (isExternal(this.fullPath)) {
|
|
return this.fullPath
|
|
}
|
|
return path.resolve(this.fullPath, routePath)
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.vab-nav-icon {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
::v-deep {
|
|
.el-tag {
|
|
float: right;
|
|
height: 16px;
|
|
padding-right: 4px;
|
|
padding-left: 4px;
|
|
margin-top: calc((#{$base-menu-item-height} - 16px) / 2);
|
|
line-height: 16px;
|
|
border: 0;
|
|
}
|
|
}
|
|
</style>
|