/** * 产品管理列表路由 */ // 产品管理列表 const ProductList = () => import("@views/productManagement/management/ProductList.vue"); const ProductFirstReadingList = () => import("@views/productManagement/firstReading/ProductFirstReadingList.vue"); const ProductReexamineList = () => import("@views/productManagement/reexamine/ProductReexamineList.vue"); const ProTaskAdjustment = () => import("@views/productManagement/management/ProTaskAdjustment.vue"); const ProFreePayment = () => import("@views/productManagement/management/ProFreePayment.vue"); const addRouter = [ { path: "/product-manage/list", component: ProductList, name: "productList", meta: { keepAlive: false, title: "产品管理列表" } }, { path: "/product-first-reading/list", component: ProductFirstReadingList, name: "productFirstReading", meta: { keepAlive: false, title: "产品初审列表" } }, { path: "/product-reexamine/list", component: ProductReexamineList, name: "productReexamine", meta: { keepAlive: false, title: "产品复审列表" } }, { path: "/product-task-adjustment/list", component: ProTaskAdjustment, name: "proTaskAdjustment", meta: { keepAlive: false, title: "产品任务调整列表" } }, { path: "/product-free-payment/list", component: ProFreePayment, name: "proFreePayment", meta: { keepAlive: false, title: "产品自定义还款方式" } } ]; export default addRouter;