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 |   14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/src/config/router.config.js b/src/config/router.config.js
index 9e5127e..f39a749 100644
--- a/src/config/router.config.js
+++ b/src/config/router.config.js
@@ -18,8 +18,8 @@
 
 export const asyncRouterMap = [{
 		path: '*',
-		// redirect: '/404',
-		component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404'),
+		redirect: '/404',
+		// component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404'),
 		hidden: true
 	},
 	{
@@ -30,7 +30,7 @@
 				component: main1,
 				children: [{
 						path: '/',
-						name: "articleList",
+						name: "home",
 						component: articleList,
 						props: true
 					},
@@ -59,6 +59,10 @@
 					}, {
 						path: '/link',
 						component: boxFriend,
+					},
+					{
+						path: '/404',
+						component: () => import('@/views/exception/404')
 					}
 				]
 			},
@@ -101,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