/** * 产品管理详情路由 */ // 产品管理详情 const ProductDetail = () => import("@views/productManagement/management/ProductDetail.vue"); const ProFreePaymentDetail = () => import("@views/productManagement/management/proFreePaymentDetail.vue"); const ProductDimensionDetail = () => import( "@views/productManagement/management/components/productDimension/ProductDimensionDetail.vue" ); const FirstReadingDetail = () => import("@views/productManagement/firstReading/FirstReadingDetail.vue"); const ImagePreview = () => import("@views/productManagement/components/ImagePreview.vue"); const detailRouter = [ { path: "/product/detail", component: ProductDetail, name: "productDetail", meta: { keepAlive: false, title: "产品管理详情" } }, { path: "/product-maintenance/detail", component: FirstReadingDetail, name: "maintenanceDetail", meta: { keepAlive: false, title: "产品维护详情" } }, { path: "/product-first-reading/detail", component: FirstReadingDetail, name: "firstReadingDetail", meta: { keepAlive: false, title: "产品处理详情" } }, { path: "/product-reexamine/detail", component: FirstReadingDetail, name: "reexamineDetail", meta: { keepAlive: false, title: "产品处理详情" } }, { path: "/product-payment/detail", component: ProFreePaymentDetail, name: "proFreePaymentDetail", meta: { keepAlive: false, title: "产品自由还款方式详情" } }, { path: "/product-manage/dimension/detail", component: ProductDimensionDetail, name: "dimensionDetail", meta: { keepAlive: false, title: "维度定义" } }, { path: "/file-view", component: ImagePreview, name: "fileView", meta: { keepAlive: false, title: "图片预览" } } ]; export default detailRouter;