From 74344a2ec388b78fe906a22c31f8fdb77fc60b12 Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Fri, 04 Mar 2022 15:55:59 +0800
Subject: [PATCH] 404页面优化,页面响应式变化适配

---
 src/config/router.config.js |   49 ++++++++++++++++++++++++++++++++++++++-----------
 1 files changed, 38 insertions(+), 11 deletions(-)

diff --git a/src/config/router.config.js b/src/config/router.config.js
index 0239b54..f39a749 100644
--- a/src/config/router.config.js
+++ b/src/config/router.config.js
@@ -1,21 +1,25 @@
 import baseLayout from '../components/layouts/baseLayout.vue'
 
-import articleList from '../components/group/articleList.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 main1 from '../components/swichLabel/main1-home.vue'
+import main2 from '../components/swichLabel/main2-music-search.vue'
 import main3 from '../components/swichLabel/main3-show.vue'
+import link from '../components/swichLabel/main4-link.vue'
+import login from '../components/swichLabel/main5-login.vue'
+import comment from '../components/swichLabel/main6-comment.vue'
 
 import box1 from '../components/mini/box1-info.vue'
 import tagTime from '../components/mini/tagTime.vue'
 import tagInfo from '../components/mini/tagInfo.vue'
+import boxFriend from '../components/mini/box-friend.vue'
 import mdDetail from '../components/mini/mdDetail.vue'
 
 
 export const asyncRouterMap = [{
 		path: '*',
-		// redirect: '/404',
-		component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404'),
+		redirect: '/404',
+		// component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404'),
 		hidden: true
 	},
 	{
@@ -26,36 +30,52 @@
 				component: main1,
 				children: [{
 						path: '/',
+						name: "home",
 						component: articleList,
+						props: true
 					},
 					{
 						path: '/box1',
 						component: box1,
 					},
 					{
+						name: "tagTime",
 						path: '/tagTime',
 						component: tagTime,
-						props:true
+					},
+					{
+						name: "comment",
+						path: '/comment',
+						component: comment,
 					},
 					{
 						path: '/tagInfo',
 						component: tagInfo,
 					},
 					{
+						name: "mdDetail",
 						path: '/mdDetail',
 						component: mdDetail,
+					}, {
+						path: '/link',
+						component: boxFriend,
+					},
+					{
+						path: '/404',
+						component: () => import('@/views/exception/404')
 					}
 				]
 			},
 			{
-				path: '/main1',
+				path: '/articleList',
 				component: main1,
 				children: [{
 					path: '/',
+					name: "articleList",
 					component: articleList,
 				}]
 			},
-			
+
 			{
 				path: '/main2',
 				component: main2,
@@ -64,7 +84,14 @@
 				path: '/main3',
 				component: main3,
 			},
-			
+			{
+				path: '/link',
+				component: link,
+			}, {
+				path: '/login',
+				component: login,
+			},
+
 
 		]
 	},
@@ -78,8 +105,8 @@
  * @type { *[] }
  */
 export const constantRouterMap = [{
-		path: '/404',
-		component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404')
+		// path: '/404',
+		// component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404')
 	}
 
 ]

--
Gitblit v1.9.1