master
toesbieya 6 years ago
parent 36bfdc3bb7
commit 1b82b97e71
  1. 4
      vue/src/assets/styles/sidebar.scss
  2. 2
      vue/src/store/modules/resource.js

@ -113,6 +113,10 @@ $iconSize: 17px;
overflow: hidden; overflow: hidden;
} }
.el-submenu__title i {
color: inherit;
}
.popover-menu__title { .popover-menu__title {
cursor: auto; cursor: auto;
text-align: center; text-align: center;

@ -102,7 +102,7 @@ function addFullPath(routes, basePath = '/') {
routes.forEach(route => { routes.forEach(route => {
delete route.components delete route.components
route.fullPath = path.resolve(basePath, route.path) route.fullPath = path.resolve(basePath, route.path)
route.children && addFullPath(route.children, route.path) route.children && addFullPath(route.children, route.fullPath)
}) })
} }

Loading…
Cancel
Save