From ad2b70777b866a9f4848a89fd0e343f991f8a604 Mon Sep 17 00:00:00 2001
From: lijh <lijh>
Date: Thu, 13 Jan 2022 18:40:57 +0800
Subject: [PATCH] 路由跳转添加

---
 src/config/router.config.js |   64 ++++++++++++++++++++-----------
 1 files changed, 41 insertions(+), 23 deletions(-)

diff --git a/src/config/router.config.js b/src/config/router.config.js
index 47a5f1b..48f57b5 100644
--- a/src/config/router.config.js
+++ b/src/config/router.config.js
@@ -1,43 +1,61 @@
-import BasicLayout from '../layouts/BasicLayout.vue'
 import main from '../components/layouts/main.vue'
+import main1 from '../components/layouts/main1-show.vue'
+import main2 from '../components/layouts/main2-show.vue'
+import box6 from '../components/layouts/box6-articleList.vue'
+import box1 from '../components/layouts/box1-info.vue'
+import box2 from '../components/layouts/box2-class.vue'
 
 
 export const asyncRouterMap = [{
-		path: '/',
-		component: main,
-		meta: {
-			title: "在你左边,听风及雨"
-		},
+		path: '*',
+		// redirect: '/404',
+		component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404'),
+		hidden: true
 	},
 	{
-		path: '/home',
-		name: 'BasicLayout.vue',
-		component: BasicLayout,
-		meta: {
-			title: '在你左边,听风及雨'
-		},
-		children: [
+		path: '/',
+		component: main,
+		children: [{
+				path: '/',
+				component: main1,
+				children: [{
+						path: '/',
+						component: box6,
+					},
+					{
+						path: '/box1',
+						component: box1,
+					}
+				]
+			},
+			{
+				path: '/main1',
+				component: main1,
+				children: [{
+					path: '/',
+					component: box6,
+				}]
+			},
+			{
+				path: '/main2',
+				component: main2,
+
+			},
 
 		]
 	},
-	{
-		path: '*',
-		redirect: '/404',
-		hidden: true
-	}
+
+
 ]
+
 
 /**
  * 基础路由
  * @type { *[] }
  */
-export const constantRouterMap = [
-
-
-	{
+export const constantRouterMap = [{
 		path: '/404',
 		component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404')
 	}
 
 ]
-

--
Gitblit v1.9.1