From 019990450fa60b31f3a055a4e1f3fc7609843291 Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Mon, 17 Jan 2022 02:22:52 +0800
Subject: [PATCH] Aplayer/全局键盘监听

---
 src/config/router.config.js |   91 +++++++++++++++++++++++++++++++++------------
 1 files changed, 67 insertions(+), 24 deletions(-)

diff --git a/src/config/router.config.js b/src/config/router.config.js
index 47a5f1b..dadeddf 100644
--- a/src/config/router.config.js
+++ b/src/config/router.config.js
@@ -1,43 +1,86 @@
-import BasicLayout from '../layouts/BasicLayout.vue'
-import main from '../components/layouts/main.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 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 = [{
-		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: baseLayout,
+		children: [{
+				path: '/',
+				component: main1,
+				children: [{
+						path: '/',
+						component: articleList,
+						props:true
+					},
+					{
+						path: '/box1',
+						component: box1,
+					},
+					{
+						path: '/tagTime',
+						component: tagTime,
+						props:true
+					},
+					{
+						path: '/tagInfo',
+						component: tagInfo,
+					},
+					{
+						path: '/mdDetail',
+						component: mdDetail,
+					}
+				]
+			},
+			{
+				path: '/main1',
+				component: main1,
+				children: [{
+					path: '/',
+					component: articleList,
+				}]
+			},
+			
+			{
+				path: '/main2',
+				component: main2,
+			},
+			{
+				path: '/main3',
+				component: main3,
+			},
+			
 
 		]
 	},
-	{
-		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