// 中文研报路由模块 export const reportRoutes=[ { path:"/report/preview", name:"ReportPreview", component: () => import("@/views/report/PreviewDetail.vue"), meta: { title: "中文研报", }, }, { path:"/report/dayweek/add", name:"ReportDayWeekAdd", component: () => import("@/views/report/ReportDayWeekAdd.vue"), meta: { title: "添加晨报/周报", }, }, { path:"/report/edit", name:"ReportEdit", component: () => import("@/views/report/EditReport.vue"), meta: { title: "编辑研报", }, }, { path:"/report/add", name:"ReportAdd", component: () => import("@/views/report/AddReport.vue"), meta: { title: "添加研报", }, }, { path:"/report/list", name:"ReportList", component: () => import("@/views/report/List.vue"), meta: { title: "中文研报", keepAlive:true, hasBackTop:true }, }, // { // path:"/report/detail", // name:"reportDetail", // component: () => import("@/views/report/Detail.vue"), // meta: { // title: "中文研报", // keepAlive:false, // hasBackTop:true // }, // }, { path:"/report/chapter/list", name:"ReportChapterList", component: () => import("@/views/report/chapter/List.vue"), meta: { title: "中文研报", keepAlive:false }, }, { path:"/report/chapter/detail", name:"ReportChapterDetail", component: () => import("@/views/report/chapter/Detail.vue"), meta: { title: "中文研报", keepAlive:false, hasBackTop:true }, }, { path:"/report/search", name:"ReportSearch", component: () => import("@/views/report/Search.vue"), meta: { title: "中文研报", keepAlive:true, hasBackTop:true }, }, { path:"/report/addReportInfo", name:"AddReportInfo", component: () => import("@/views/report/addReportInfo.vue"), meta: { title: "中文研报", keepAlive:true, hasBackTop:true }, }, ]