From a23166e4fac771238a90ae5ddc5b1e53a1c7afb8 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Thu, 25 Aug 2022 18:10:21 +0800 Subject: [PATCH] 更新后的细节调整 --- src/config/router.config.js | 141 ++++++++++++++++++++++++++++++++++++++-------- 1 files changed, 115 insertions(+), 26 deletions(-) diff --git a/src/config/router.config.js b/src/config/router.config.js index 47a5f1b..98a4291 100644 --- a/src/config/router.config.js +++ b/src/config/router.config.js @@ -1,43 +1,132 @@ -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-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 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' 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: '/', + name: "home", + component: articleList, + props: true + }, + { + path: '/box1', + component: box1, + }, + { + name: "tagTime", + path: '/tagTime', + component: tagTime, + }, + { + 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: '/articleList', + component: main1, + children: [{ + path: '/', + name: "articleList", + component: articleList, + }] + }, + { + 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: '*', - redirect: '/404', - hidden: true - } + + ] + /** * 基础路由 * @type { *[] } */ -export const constantRouterMap = [ - - - { - path: '/404', - component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404') +export const constantRouterMap = [{ + // path: '/404', + // component: () => import( /* webpackChunkName: "fail" */ '@/views/exception/404') } ] - -- Gitblit v1.9.1