d742d4f1 by 任超

style:菜单样式

1 parent b7c5bcbe
......@@ -25,11 +25,19 @@ export const constantRoutes = [
component: () => import('@/views/error-page/404'),
hidden: true
},
{ path: '*', redirect: '/404', hidden: true }
]
/**
* asyncRoutes
* the routes that need to be dynamically loaded based on user roles
*/
export const asyncRoutes = [
{
path: '/',
component: Layout,
redirect: '/home',
hidden: true,
meta: { title: '首页', icon: 'fykf' },
children: [
{
path: 'home',
......@@ -39,14 +47,6 @@ export const constantRoutes = [
}
]
},
{ path: '*', redirect: '/404', hidden: true }
]
/**
* asyncRoutes
* the routes that need to be dynamically loaded based on user roles
*/
export const asyncRoutes = [
{
path: '/businessHandling',
id: '3',
......
......@@ -112,7 +112,7 @@
// 没有子级
.submenu-title-noDropdown {
background-color: transparent !important;
margin-left: 20px;
margin-left: 15px;
padding-left: 10px !important;
color: $menuText;
......