123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- // 资料路由
- export const informationRoutes = [
- {
- path: "/information",
- meta: {
- title: "资料", // 页面标题title
- keepAlive: true,
- },
- component: () => import("@/views/information/index.vue"),
- children: [
- {
- path: "comment-on-my",
- component: () =>
- import("@/views/information/children/comment-on-my.vue"),
- meta: {
- title: "资料-评论我的", // 页面标题title
- },
- },
- {
- path: "reply-on-my",
- component: () => import("@/views/information/children/reply-on-my.vue"),
- meta: {
- title: "资料-回复我的", // 页面标题title
- },
- },
- {
- path: "like-on-my",
- component: () => import("@/views/information/children/like-on-my.vue"),
- meta: {
- title: "资料-点赞我的", // 页面标题title
- },
- },
- {
- path: "my-chasingFun",
- component: () =>
- import("@/views/information/children/my-chasingFun.vue"),
- meta: {
- title: "资料-我的订阅", // 页面标题title
- },
- },
- {
- path: "my-comment",
- component: () => import("@/views/information/children/my-comment.vue"),
- meta: {
- title: "资料-我的评论", // 页面标题title
- },
- },
- {
- path: "my-reply",
- component: () => import("@/views/information/children/my-reply.vue"),
- meta: {
- title: "资料-我的回复", // 页面标题title
- },
- },
- {
- path: "my-like",
- component: () => import("@/views/information/children/my-like.vue"),
- meta: {
- title: "资料-我的点赞", // 页面标题title
- },
- },
- {
- path: "my-release",
- component: () => import("@/views/information/children/my-release.vue"),
- meta: {
- title: "资料-我的发布", // 页面标题title
- },
- },
- {
- path: "my-collect",
- component: () => import("@/views/information/children/my-collect.vue"),
- meta: {
- title: "资料-我的收藏", // 页面标题title
- },
- },
- {
- path: "study-history",
- component: () =>
- import("@/views/information/children/study-history.vue"),
- meta: {
- title: "资料-学习历史", // 页面标题title
- },
- },
- ],
- },
- {
- path: "/information-collection",
- name: "information-collection",
- component: () => import("@/views/information/information-collection.vue"),
- meta: {
- title: "资料-资料合集", // 页面标题title
- keepAlive: true,
- },
- },
- {
- path: "/information-details",
- name: "information-details",
- component: () => import("@/views/information/information-details.vue"),
- meta: {
- title: "资料-资料详情", // 页面标题title
- empty: ["Navbar"],
- fill: true,
- keepAlive: true,
- children: true,
- },
- },
- {
- path: "/information-details-content",
- name: "information-details-content",
- component: () =>
- import("@/views/information/information-details-content.vue"),
- meta: {
- title: "资料-资料详情", // 页面标题title
- empty: ["Header", "Navbar"],
- fill: true,
- },
- },
- {
- path: "/information-contribute",
- name: "information-contribute",
- component: () => import("@/views/information/information-contribute.vue"),
- meta: {
- title: "资料-投稿资料", // 页面标题title
- },
- },
- ];
|