routerLXF.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. export function routesLXF() {
  2. const routesLXF = [
  3. {
  4. path: "materialClassification",
  5. name: "物料分类",
  6. component: () => import("../views/product-material/material-classification/index.vue"),
  7. },
  8. {
  9. path: "materialClassificationAdd",
  10. name: "物料分类添加",
  11. component: () => import("../views/product-material/material-classification/add.vue"),
  12. },
  13. {
  14. path: "materialClassificationEdit",
  15. name: "物料分类编辑",
  16. component: () => import("../views/product-material/material-classification/edit.vue"),
  17. },
  18. {
  19. path: "productClassification",
  20. name: "产品分类",
  21. component: () => import("../views/product-material/product-classification/index.vue"),
  22. },
  23. {
  24. path: "productClassificationAdd",
  25. name: "产品分类添加",
  26. component: () => import("../views/product-material/product-classification/add.vue"),
  27. },
  28. {
  29. path: "productClassificationEdit",
  30. name: "产品分类编辑",
  31. component: () => import("../views/product-material/product-classification/edit.vue"),
  32. },
  33. {
  34. path: "materialLibrary",
  35. name: "物料库",
  36. component: () => import("../views/product-material/material-library/index.vue"),
  37. },
  38. {
  39. path: "materialLibraryAdd",
  40. name: "物料库添加",
  41. component: () => import("../views/product-material/material-library/add.vue"),
  42. },
  43. {
  44. path: "productLibrary",
  45. name: "产品库",
  46. component: () => import("../views/product-material/product-library/index.vue"),
  47. },
  48. {
  49. path: "productLibraryAdd",
  50. name: "产品库添加",
  51. component: () => import("../views/product-material/product-library/add.vue"),
  52. },
  53. {
  54. path: "threadHead",
  55. name: "螺纹头",
  56. component: () => import("../views/equipment/threadHead.vue"),
  57. },
  58. ];
  59. return routesLXF;
  60. }