From 63f5119bcc714c36fe8db21e5461d73eb5a0eaa0 Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Mon, 21 Feb 2022 18:47:52 +0800
Subject: [PATCH] 统计数据添加,文章接口对接

---
 src/config/router.config.js |   27 ++++++++++++++++++++++-----
 1 files changed, 22 insertions(+), 5 deletions(-)

diff --git a/src/config/router.config.js b/src/config/router.config.js
index 0239b54..bd96ebc 100644
--- a/src/config/router.config.js
+++ b/src/config/router.config.js
@@ -1,14 +1,17 @@
 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 main3 from '../components/swichLabel/main3-show.vue'
+import main4 from '../components/swichLabel/main4-show.vue'
+import login from '../components/swichLabel/main5-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 boxFriend from '../components/mini/box-friend.vue'
 import mdDetail from '../components/mini/mdDetail.vue'
 
 
@@ -26,36 +29,43 @@
 				component: main1,
 				children: [{
 						path: '/',
+						name:"articleList",
 						component: articleList,
+						props: true
 					},
 					{
 						path: '/box1',
 						component: box1,
 					},
 					{
+						name:"tagTime",
 						path: '/tagTime',
 						component: tagTime,
-						props:true
 					},
 					{
 						path: '/tagInfo',
 						component: tagInfo,
 					},
 					{
+						name:"mdDetail",
 						path: '/mdDetail',
 						component: mdDetail,
+					}, {
+						path: '/main4',
+						component: boxFriend,
 					}
 				]
 			},
 			{
-				path: '/main1',
+				path: '/articleList',
 				component: main1,
 				children: [{
 					path: '/',
+					name:"articleList",
 					component: articleList,
 				}]
 			},
-			
+
 			{
 				path: '/main2',
 				component: main2,
@@ -64,7 +74,14 @@
 				path: '/main3',
 				component: main3,
 			},
-			
+			{
+				path: '/main4',
+				component: main4,
+			}, {
+				path: '/login',
+				component: login,
+			},
+
 
 		]
 	},

--
Gitblit v1.9.1