fix 侧边栏二级导航缩小图标消失问题
This commit is contained in:
parent
d33bbaf445
commit
3494625723
@ -106,3 +106,8 @@
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
// fix 侧边栏二级导航缩小图标消失问题
|
||||
.el-sub-menu__title {
|
||||
padding-right: unset !important;
|
||||
}
|
||||
|
||||
@ -36,16 +36,16 @@ const props = defineProps({
|
||||
// route object
|
||||
item: {
|
||||
type: Object,
|
||||
required: true,
|
||||
required: true
|
||||
},
|
||||
isNest: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
default: false
|
||||
},
|
||||
basePath: {
|
||||
type: String,
|
||||
default: '',
|
||||
},
|
||||
default: ''
|
||||
}
|
||||
})
|
||||
|
||||
const onlyOneChild = ref({})
|
||||
@ -89,7 +89,7 @@ function resolvePath(routePath, routeQuery) {
|
||||
let query = JSON.parse(routeQuery)
|
||||
return {
|
||||
path: getNormalPath(props.basePath + '/' + routePath),
|
||||
query: query,
|
||||
query: query
|
||||
}
|
||||
}
|
||||
return getNormalPath(props.basePath + '/' + routePath)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user