From 06ee76d0a83854ad7a044689627e0f00a66e5ce5 Mon Sep 17 00:00:00 2001
From: lijh <lijh>
Date: Wed, 19 Jan 2022 18:36:23 +0800
Subject: [PATCH] 表单校验

---
 src/config/router.config.js |   50 ++++++++++++++++++++++++++++++++++++++++----------
 1 files changed, 40 insertions(+), 10 deletions(-)

diff --git a/src/config/router.config.js b/src/config/router.config.js
index 48f57b5..81c4de3 100644
--- a/src/config/router.config.js
+++ b/src/config/router.config.js
@@ -1,9 +1,16 @@
-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'
+import baseLayout from '../components/layouts/baseLayout.vue'
+
+import articleList from '../components/group/articleListScorll.vue'
+
+import main1 from '../components/swichLabel/main1-show.vue'
+import main2 from '../components/swichLabel/main2-show.vue'
+import main3 from '../components/swichLabel/main3-show.vue'
+import main4 from '../components/swichLabel/main4-show.vue'
+
+import box1 from '../components/mini/box1-info.vue'
+import tagTime from '../components/mini/tagTime.vue'
+import tagInfo from '../components/mini/tagInfo.vue'
+import mdDetail from '../components/mini/mdDetail.vue'
 
 
 export const asyncRouterMap = [{
@@ -14,17 +21,31 @@
 	},
 	{
 		path: '/',
-		component: main,
+		component: baseLayout,
 		children: [{
 				path: '/',
 				component: main1,
 				children: [{
 						path: '/',
-						component: box6,
+						component: articleList,
+						props:true
 					},
 					{
 						path: '/box1',
 						component: box1,
+					},
+					{
+						path: '/tagTime',
+						component: tagTime,
+						props:true
+					},
+					{
+						path: '/tagInfo',
+						component: tagInfo,
+					},
+					{
+						path: '/mdDetail',
+						component: mdDetail,
 					}
 				]
 			},
@@ -33,14 +54,23 @@
 				component: main1,
 				children: [{
 					path: '/',
-					component: box6,
+					component: articleList,
 				}]
 			},
+			
 			{
 				path: '/main2',
 				component: main2,
-
 			},
+			{
+				path: '/main3',
+				component: main3,
+			},
+			{
+				path: '/main4',
+				component: main4,
+			},
+			
 
 		]
 	},

--
Gitblit v1.9.1