From 271ca6cb0ee2ff0a789bf74d1821e7891a7043bb Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Tue, 30 Aug 2022 21:57:42 +0800
Subject: [PATCH] 自定义表情组件

---
 src/config/router.config.js |   86 +++++++++++++++++++++++++++++++++++-------
 1 files changed, 71 insertions(+), 15 deletions(-)

diff --git a/src/config/router.config.js b/src/config/router.config.js
index dadeddf..4ce50ee 100644
--- a/src/config/router.config.js
+++ b/src/config/router.config.js
@@ -2,20 +2,31 @@
 
 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 platform 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 edit from '../components/swichLabel/edit.vue'
+
+import platformGroup from '../components/group/platformGroup.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'
+import videoDetail from '../components/mini/box16-videoDetail.vue'
+import videoList from '../components/mini/box14-video.vue'
+
+import videoMiniBox from '../components/iframe/videoMiniBox.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,50 +37,95 @@
 				component: main1,
 				children: [{
 						path: '/',
+						name: "home",
 						component: articleList,
-						props:true
+						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,
+				path: '/platform',
+				component: platform,
+				children: [
+					// 	{
+					// 	path: '/',
+					// 	name: "videoList",
+					// 	component: videoList,
+					// },
+					{
+						path: '/',
+						name: "platformGroup",
+						component: platformGroup,
+					},
+
+					{
+						path: '/videoDetail',
+						name: "videoDetail",
+						component: videoDetail,
+					}
+				]
 			},
 			{
 				path: '/main3',
 				component: main3,
 			},
-			
+			{
+				path: '/link',
+				component: link,
+			}, {
+				path: '/login',
+				component: login,
+			}, {
+				path: '/edit',
+				name: 'edit',
+				component: edit,
+			},
+		],
 
-		]
 	},
-
+	{
+		path: '/v',
+		component: videoMiniBox,
+	}
 
 ]
 
@@ -79,8 +135,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