123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- export function routesLXF() {
- const routesLXF = [
- {
- path: "materialClassification",
- name: "物料分类",
- component: () => import("../views/product-material/material-classification/index.vue"),
- },
- {
- path: "materialClassificationAdd",
- name: "物料分类添加",
- component: () => import("../views/product-material/material-classification/add.vue"),
- },
- {
- path: "materialClassificationEdit",
- name: "物料分类编辑",
- component: () => import("../views/product-material/material-classification/edit.vue"),
- },
- {
- path: "productClassification",
- name: "产品分类",
- component: () => import("../views/product-material/product-classification/index.vue"),
- },
- {
- path: "productClassificationAdd",
- name: "产品分类添加",
- component: () => import("../views/product-material/product-classification/add.vue"),
- },
- {
- path: "productClassificationEdit",
- name: "产品分类编辑",
- component: () => import("../views/product-material/product-classification/edit.vue"),
- },
- {
- path: "materialLibrary",
- name: "物料库",
- component: () => import("../views/product-material/material-library/index.vue"),
- },
- {
- path: "materialLibraryAdd",
- name: "物料库添加",
- component: () => import("../views/product-material/material-library/add.vue"),
- },
- {
- path: "productLibrary",
- name: "产品库",
- component: () => import("../views/product-material/product-library/index.vue"),
- },
- {
- path: "productLibraryAdd",
- name: "产品库添加",
- component: () => import("../views/product-material/product-library/add.vue"),
- },
- {
- path: "threadHead",
- name: "螺纹头",
- component: () => import("../views/equipment/threadHead.vue"),
- },
- ];
- return routesLXF;
- }
|