| 
					
				 | 
			
			
				@@ -27,6 +27,17 @@ import Layout from '@/layout' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 // 公共路由
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 export const constantRoutes = [
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    path: '/redirect',
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    component: Layout,
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    hidden: true,
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    children: [
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        path: '/redirect/:path*',
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        component: () => import('@/views/redirect')
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      }
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    ]
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  },
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     path: '/login',
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     component: () => import('@/views/login'),
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     hidden: true
 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -93,8 +104,7 @@ export const constantRoutes = [ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         meta: { title: '修改生成配置' }
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       }
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     ]
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  },
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  { path: '*', redirect: '/404', hidden: true }
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  }
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 ]
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 export default new Router({
 
			 |